我正在使用以下代码用新的src替换旧的域src:
Array.from(document.querySelectorAll('img')).forEach(x => {
x.src = x.src.replace(/ap.domain.com/,'new.domain.org')
console.log(x);
});
和
Array.from(document.querySelectorAll('div')).forEach(x => {
x.style.backgroundImage = x.style.backgroundImage.replace(/ap.domain.com/,'new.domain.org')
console.log(x);
});
我的问题: 如何阻止旧资源(ap.domain.com) 当浏览器开始打开页面时,也会加载旧资源。有没有办法使用JavaScript或jQuery 停止?