图片加载不出来时,设置默认默认图片
js代码如下
//图片加载不出来时,处理默认图片
function nofindImg(img) {
img.src = "../../img/photo_icon.png";
img.onerror = null;
}
html结构如下
<img src=" + dataList[i].imgUrl + " onerror="nofindImg(this);"
js代码如下
//图片加载不出来时,处理默认图片
function nofindImg(img) {
img.src = "../../img/photo_icon.png";
img.onerror = null;
}
html结构如下
<img src=" + dataList[i].imgUrl + " onerror="nofindImg(this);"