当 $.post 成功时,它有一个成功处理程序。如果失败会怎样?是否有类似的处理程序可以用于这种情况,以便我们可以通知用户某些事情没有正确发生?
最佳答案
根据 documentation ,没有针对 $.post
方法的特定错误处理程序。
如果您想要同时拥有成功和失败处理程序,您必须做的是使用低级 $.ajax
方法。它的文档可以在这里找到:http://api.jquery.com/jQuery.ajax/
$.ajax({
type: "POST",
url: "some.php",
success: function(html){
/* Do success stuff here */
},
error: function(){
/* do error stuff here */
}
});
关于jquery:Jquery 中是否有 $.post 的失败处理程序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2846618/