始终使用成功和错误回调
我有一个简单的代码检查图像网址是否有效。不幸的是,无论是否找到图像,我都会收到错误和成功回调。
var url = obj.image;
$.ajax({
url: url,
async:false,
success: function(data){
console.log('success');
},
error:function (xhr, ajaxOptions, thrownError){
console.log('error');
}
});
图像: http://images.virtualdesign.pl/images/21422jqerrors.png
我正在使用jquery 1.4.3 和 jquery mobile 1.0a3。
I have a simple code checking if image url is valid. Unfortunately whether image is found or not I'm getting both error and success callbacks.
var url = obj.image;
$.ajax({
url: url,
async:false,
success: function(data){
console.log('success');
},
error:function (xhr, ajaxOptions, thrownError){
console.log('error');
}
});
Image:
http://images.virtualdesign.pl/images/21422jqerrors.png
I'm using jquery 1.4.3 together with jquery mobile 1.0a3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我宁愿建议不要使用 Ajax 请求来实现此目的。我会像
使用它一样:
演示:http://jsfiddle.net/9RxrA/
I'd rather suggest not to use an Ajax request for this purpose. I'd go with
Using it like:
Demo: http://jsfiddle.net/9RxrA/