

抱歉!我们很抱歉...
似乎该页面不存在。让我们带您回到网站。
返回主页 (function() {
"use strict";
const fallbackSrc = document.currentScript?.dataset.src;
function handleImageError(img) {
if (img.parentElement?.classList.contains("js-on-error-remove")) {
img.parentElement.remove();
return;
}
img.src = fallbackSrc;
img.srcset = "";
img.style.objectFit = "scale-down";
}
function handleImageLoad(img) {
img.style.background = "none";
}
function setupImageErrorMonitoring() {
const images = document.querySelectorAll("img.js-on-error");
images.forEach((img)=>{
if (img.dataset.errorMonitorSetup) return;
if (img.complete) {
if (img.naturalWidth > 0) {
handleImageLoad(img);
} else {
handleImageError(img);
}
}
img.addEventListener("error", function() {
handleImageError(this);
});
img.addEventListener("load", function() {
handleImageLoad(this);
});
img.dataset.errorMonitorSetup = "true";
});
}
setupImageErrorMonitoring();
})();