gpt4 book ai didi

javascript - 如何使用 jQuery 删除脚本

转载 作者:行者123 更新时间:2023-12-04 08:18:21 27 4
gpt4 key购买 nike

我的 jQuery 有问题。所以,我想删除一个位于 .我的 html 是:

<div id="right-bloc">
<div class="right-bloc-pub-1">
<script type="text/javascript" src="http://firstScript.com"></script>
</div>
<div class="right-bloc-pub-2">
<script type="text/javascript" src="http://secondScript.com"></script>
</div>
</div>
我找到了下面的解决方案
html.find('script[src="http://firstScript.com"]').remove();

但问题是它只删除了只有 HTTP URL 的脚本,因为某些脚本具有那种 URL
//ialtears.com/d2/32/42/d23949fadf7b59629f8345.js
我想删除那种网址

最佳答案

你可以这样试试:

JQuery(document).ready(function($){
$('script').each(function() {
this.parentNode.removeChild(this);
});
});

关于javascript - 如何使用 jQuery 删除脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65606839/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com