如果此脚本失败或成功,我如何发出警报消息

时间:2015-01-28 02:29:39

标签: jquery

$(document).ready(function(){
window.setInterval(function(){
    $.post("countest.php",
    {loader:1},function(data){
        $("#inc").html(data)
    });
},5000);

});

我是这个PL中的新手,这个脚本就像我想要的那样工作,但我认为有些东西遗失了,感谢你提前帮助:)

1 个答案:

答案 0 :(得分:0)

您可以使用fail回调在请求失败时执行某些特定操作

$.post("countest.php",{loader:1},function(data){
    $("#inc").html(data)
})
.fail(function() {
    alert( "error" );
});