定义
onerror 事件在加载外部文件(文档或图像)发生错误时触发。
加载默认图片
<img src="" onerror="isNoFind(this)">
//此处不能用this作为形参,否则会报错(this为关键词)
function insNoFind(that){
that.src = "default.png";
that.onerror = null; //避免默认图片也加载不到时,产生死循环
}
onerror 事件在加载外部文件(文档或图像)发生错误时触发。
<img src="" onerror="isNoFind(this)">
//此处不能用this作为形参,否则会报错(this为关键词)
function insNoFind(that){
that.src = "default.png";
that.onerror = null; //避免默认图片也加载不到时,产生死循环
}
本文标题:onerror加载默认图片
本文链接:https://www.haomeiwen.com/subject/fdgkvqtx.html
网友评论