Skip to content

0x044-代码段-使用js拦截html错误图像并隐藏

js
document  
.getElementById('xxxx')  
.querySelectorAll('img').forEach(function (img) {  
  img.onerror = function () {  
	this.style.display = 'none';  
  };  
})
document  
.getElementById('xxxx')  
.querySelectorAll('img').forEach(function (img) {  
  img.onerror = function () {  
	this.style.display = 'none';  
  };  
})

参考: html - 如何仅使用 CSS/HTML 隐藏图像损坏的图标? - SegmentFault 思否