图片加载失败或默认图片

来源:互联网 发布:中国高铁网络 编辑:程序博客网 时间:2024/05/05 13:04

直接上马


$('img').each(function(k,i) {                if($('img').eq(k).height()<200){                    if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {                        this.src = '/Public/Main/images/no-image.jpg';                    }                }else{                    if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {                        this.src = '/Public/Main/images/error-image.jpg';                    }                }        });

直接放在相应的js文件下就Ok了

阅读全文
0 0