1

有什么方法可以知道某些图像无法在 jquery/javascript 中加载到网页中。

4

1 回答 1

5

使用:.error()

$('img').error(function() {
  alert('Failed to load the image with src: ' + $(this).attr('src'));
});
于 2012-09-27T07:57:46.500 回答