jQuery Ajax 404处理

前端之家收集整理的这篇文章主要介绍了jQuery Ajax 404处理前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图访问一个404事件,我可以看到回来作为404与firebug,但错误功能没有踢,用我的下面的代码我总是得到错误:成功?

即。

$.ajax({
    type: 'get',url: 'url: 'https://admin.instantservice.com/resources/smartbutton/5702/10945/available.gif?' + Math.floor(Math.random()*10001),success: function(data,textStatus,XMLHttpRequest){
        console.log('Error: ' + textStatus);
    },error:function (xhr,ajaxOptions,thrownError){
        alert(xhr.status);
        alert(xhr.statusText);
        alert(xhr.responseText);
    }
});

我再次知道1000%,我在firebug中获得404 Not Found,它永远不会触发错误

我错过了什么吗?

解决方法

原文链接:https://www.f2er.com/jquery/181467.html

猜你在找的jQuery相关文章