图片加载失败处理

来源:互联网 发布:淘宝上买玉镯子可靠吗 编辑:程序博客网 时间:2024/04/30 20:09
//图片加载失败处理    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 = "http://file.do.yy.com/group1/M02/01/A9/tz0MDVIghNCAaMnsAAAVHpUv0s4430.png";                $(this).unbind('error.replaceSrc');            }).trigger('load');        }    });

原创粉丝点击