码迷,mamicode.com
首页 > 其他好文 > 详细

判断本地图片是否存在

时间:2015-05-25 20:01:16      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

 1 $(function(){
 2      //添加判断图片是否存在操作
 3      var nopic="__CDN_PATH_1__/public/kn/Plan/images/base_plan.png";
 4      $("img").each(function(){
 5              var img = $(this);
 6              if(document.all && img.fileSize == -1){
 7                  $(this).attr("src", nopic);
 8              }else{
 9                 //头像不替换
10                 if($(img).width() > 110){
11                     $(img).error(function(){
12                         $(this).attr("src", nopic);
13                     });
14                 }
15              }
16          });
17  });

 

判断本地图片是否存在

标签:

原文地址:http://www.cnblogs.com/xingmeng/p/4528586.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!