Opposite of success: function(data) - ajax
->success的对立面是什么:函数(数据)
1 2 3 4 5 6 7 | $.ajax({ type:"POST", cache: false, url:"/p.php", data: info, success: function(data){ |
我想检查它是否成功,而不是它是否成功…
你用成功函数捕捉成功的情况,还有错误函数。请参阅文档http://api.jquery.com/jquery.ajax/
请看这个详细的xhr捕获机制
1 2 3 4 5 6 7 8 9 10 11 | $.ajax({ type:"POST", cache: false, url:"/p.php", data: info, success: function(data){ //do something }, error: function(jqXHR, textStatus, errorThrown){ console.log(errorThrown); } |