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

I need to load images in a webpage dynamically in Javascript, but need to catch if any image fails to l

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";

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743657291a4485592.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信