Ajax Post 表单提醒

Ajax Post form Alert

如果我 post 一个表单,它会转到下一页(php,Sql)然后另一个 URL。当页面已更改并继续移动时,如何防止 post 页面上出现 Ajax 结果警报?我应该只隐藏结果 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);
     });