美文网首页
图片获取失败用默认图代替

图片获取失败用默认图代替

作者: 洱月 | 来源:发表于2018-02-13 09:00 被阅读0次

通过对图片大小的判断来处理

$(window).load(function () {
        $('img').each(function () {
            var error = false;
            if (!this.complete) {
                error = true;
            }
            if (typeof this.naturalWidth != "undefined" && this.naturalWidth == 0) {
                error = true;
            }
            if (error) {
                this.src = "images/01.jpg";
            }
        });
    });

相关文章

网友评论

      本文标题:图片获取失败用默认图代替

      本文链接:https://www.haomeiwen.com/subject/eicjtftx.html