gpt4 book ai didi

javascript - 无法使用 Element.insertAdjacentHTML() 执行内联脚本

转载 作者:行者123 更新时间:2023-12-02 22:46:17 24 4
gpt4 key购买 nike

我可以使用 insertAdjacentHTML执行内联 JavaScript?

浏览器控制台的工作原理:

$('body').append('<script>alert(1)</script>')

我需要在浏览器控制台中工作:

document.body.insertAdjacentHTML('beforeend', '<script>alert(1)</script>');

VanillaJS 解决方案不起作用。我很高兴有一个理由

最佳答案

使用insertAdjacentHTML,虽然脚本标签被添加到页面中,但它不会被解析或执行。

要使脚本实际运行,您需要使用 createElement :

var script = document.createElement('script');
script.innerText = "console.log('Hello!');";

document.body.append(script);

关于javascript - 无法使用 Element.insertAdjacentHTML() 执行内联脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58390821/

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