最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Catching where an Image fails to load from a src url - Stack Overflow

programmeradmin1浏览0评论

I need to load images in a webpage dynamically in Javascript, but need to catch if any image fails to load, how can I do this?
For instance:

try{
  var img = new Image();
  img.src = "404_not_found.png";
} catch( err ) {
  // tried this but didn't work
}

Yes, I know I'm not even waiting for the image to onload but when a 404 occurs, the onload method doesn't get called anyway.

I need to load images in a webpage dynamically in Javascript, but need to catch if any image fails to load, how can I do this?
For instance:

try{
  var img = new Image();
  img.src = "404_not_found.png";
} catch( err ) {
  // tried this but didn't work
}

Yes, I know I'm not even waiting for the image to onload but when a 404 occurs, the onload method doesn't get called anyway.

Share Improve this question asked Dec 8, 2011 at 5:00 PetruzaPetruza 12.3k26 gold badges88 silver badges144 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

Before you assign the .src property, you need to set onload, onerror, and onabort handler functions. And, you may want to also set a timer so you can assume it isn't going to load if none of the handlers have been called when the timer fires.

Here's a working example: http://jsfiddle/jfriend00/48JmQ/

var img = new Image();
img.onerror = function() {alert("error")};
img.onabort = function() {alert("abort")};
img.onload = function() {alert("success")};
img.src = "404_not_found.png";
发布评论

评论列表(0)

  1. 暂无评论