删除DOM中的最后一个Script元素

时间:2015-08-14 13:58:58

标签: javascript jquery html

我在页面中注入了一个脚本。导航时,我需要删除此脚本... enter image description here

附上的是dom的照片。我需要删除:

<script src="https://d1xem3lp7f2hdd.cloudfront.net/assets/html5_embed-3bb40f85b8941061e0ccacdbdd7c2d94.js"></script>

最后的脚本。没有Id,src是动态的。我相信可以说它永远是身体的最后一个元素。如何删除此元素?

我尝试过:document.body.lastElement.remove()没有运气..

谢谢!

3 个答案:

答案 0 :(得分:-1)

使用jquery,您可以删除为
    $("script").last().remove()

答案 1 :(得分:-1)

使用jQuery,您可以运行以下命令:

$('body script:last-child').remove();

这会迭代正文并获取其父的最后一个子节点的脚本,然后将其从DOM中删除。

答案 2 :(得分:-1)

"elapsedTime" = "Time: %02d:%02d:%02d";

应该做的伎俩;)

PS如果你想确定它是一个剧本:

document.body.removeChild(document.body.lastChild);