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';
};
})