1
假設在我的項目主頁中有一些javascript代碼。例如,動態刪除html文件的腳本標記之間的所有內容
的index.html
<body>
html code here
<script type="text/javascript">
(function() {
some javascript code here
})();
</script>
<button type="button">Delete javascript</button>
</body>
現在,我想的是,在點擊按鈕腳本標記之間的所有內容應與腳本標記一起被刪除。我怎樣才能做到這一點?
你知道刪除腳本標籤不會影響它的代碼執行?你爲什麼要刪除它? – undefined
'document.body.removeChild(yourScriptElem);' – www139