先检查图片是否加载成功,然后如果失败的话再绑定事件
<img src="xxxx.jpg" alt="" />
<script>
jQuery(document).ready(function(){
jQuery('img').each(function(){
var error = false;
if (!this.complete) {
error = true;
}
if (typeof this.naturalWidth != "undefined" && this.naturalWidth == 0) {
error = true;
}
if(error){
$(this).bind('error.replaceSrc',function(){
this.src = "default_image_here.png";
$(this).unbind('error.replaceSrc');
}).trigger('load');
}
});
});
</script>
<img src="xxxx.jpg" alt="" />
<script>
jQuery(document).ready(function(){
jQuery('img').each(function(){
var error = false;
if (!this.complete) {
error = true;
}
if (typeof this.naturalWidth != "undefined" && this.naturalWidth == 0) {
error = true;
}
if(error){
$(this).bind('error.replaceSrc',function(){
this.src = "default_image_here.png";
$(this).unbind('error.replaceSrc');
}).trigger('load');
}
});
});
</script>