Spaces:
Running
Running
File size: 355 Bytes
79d182c d5aefaa |
1 2 3 4 5 6 7 8 9 10 11 |
window.addEventListener("error", e => {
const tag = e.target
if (tag.tagName === 'SCRIPT' && !(e instanceof ErrorEvent)) {
console.log("JS 加载错误")
const url=new URL(tag.src)
document.write(`<script src="${url.toString()}">\<\/script>`);
}
}, true);
window.onload = function () {
setTimeout(setup(), 5000);
}; |