开发者社区> 问答> 正文

使用jquery给img绑定error事件的问题

如:

<img src = 'xxxx.jpg' >

$('img').error(function(){
    $(this).attr('src',"默认图片");
})

经过测试发现,如果原始图片不存在的话,页面上的图片就会一直闪烁,如何解决这个问题?

展开
收起
小旋风柴进 2016-03-23 14:12:34 2111 0
1 条回答
写回答
取消 提交回答
  • $(window).load(function() { 
      $('img').each(function() {
        if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) { 
          this.src = 'http://www.tranism.com/weblog/images/broken.gif'; 
          } 
       });
    });
    2019-07-17 19:10:56
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关课程

更多

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载