如何使用jQuery

时间:2019-10-20 09:02:57

标签: javascript jquery

我正在使用以下代码用新的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);
});

show more in this page

我的问题: 如何阻止旧资源(ap.domain.com) 当浏览器开始打开页面时,也会加载旧资源。有没有办法使用JavaScript或jQuery 停止

0 个答案:

没有答案