如果我发布了一个Form,它会转到下一页(php,Sql(,然后转到另一个URL。当页面发生更改并继续移动时,如何防止在发布页面上出现Ajax Result警报?我应该隐藏结果div还是可以删除函数数据?
$(document).ready(function(){
//set var to bid number input field
$("#favourites").click(function(event){
event.preventDefault();
//set var to bid number input field
var content= $("#bidnumber").val();
// Url to post to and Field name and content */
$.post('add_favourites.php', {bidnumber:content},
// Alert Success
function(data){
// Alerts the results to this Div
$("#favourites").html(data);
});
});
});
回调function(data) { ... }
是可选的。你可以删除它。
显示成功结果后,可以清除元素#favorites
内部的内容。
// Alert Success
function(data){
// Alerts the results to this Div
$("#favourites").html(data);
//Clear data
setTimeout(function(){
$("#favourites").html('');
}, 5000);
});