匹配脚本标签并使用原型将其删除

发布于 2024-12-04 06:18:25 字数 124 浏览 0 评论 0原文

我的页面上有一堆脚本标签,我想删除任何包含以下单词的脚本标签:“js/calendar_SHA1_”。

我正在使用 protype javascript 库。是否有一种真正有效的方法来匹配上述字符串并将其从页面中删除?

I have a bunch of script tags on my page, and I want to remove any script tag that includes the the words: 'js/calendar_SHA1_'.

I am using the protype javascript library. Is there a really efficient way to match for the aforementioned string and remove it from the page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隔岸观火 2024-12-11 06:18:25

知道了!代码如下:

var scripts = $('script[src]');

var patt = /calendar_SHA1_/gi;

for(var i=0;i < script.length;i++){

if(scripts[i].src.match(patt)){ scripts[i].remove(); }

}

Got it! The code is below:

var scripts = $('script[src]');

var patt = /calendar_SHA1_/gi;

for(var i=0;i < scripts.length;i++){

if(scripts[i].src.match(patt)){ scripts[i].remove(); }

}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文