如何删除脚本标记

时间:2016-04-19 04:20:10

标签: file tags

我加载了很多脚本文件:

例如:

<script type="text/javascript" src=" script file "></script>
<script type="text/javascript" src=" script file "></script>

$('button').on('click', function() {
   $('script').remove(); // but the script events are still functioning.
});

2 个答案:

答案 0 :(得分:1)

如果已加载脚本,则无法卸载它。从页面中删除<script>标记不会产生任何影响。

更好的选择:使用jQuery&#39; .off()函数或JavaScript removeEventListener()的事件处理程序或事件监听器can be removed

答案 1 :(得分:0)

使用指向jquery.js的链接,或使用CDN并在脚本标记中编写代码。

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
     $('button').on('click', function() {
     $('script').remove(); // but the script events are still functioning.
   });
});
</script>