gpt4 book ai didi

javascript - 如何用脚本替换div?使用innerhtml不起作用

转载 作者:行者123 更新时间:2023-12-03 10:13:07 24 4
gpt4 key购买 nike

我正在尝试使用innerHTML 将div 的内容替换为脚本。

以下是 HTML 的重要部分:

    <script> function replace() {
document.getElementById("area").innerHTML = '<script type="text/javascript" src="SOMELINK"></script>';
</script>

<button onclick=replace()> replace </button>
<div id = "area"> hello </div>

当单击按钮时,我希望 div #area 被脚本替换,以便它显示链接的内容。我可以使用innerHTML 将其替换为纯文本,例如将“hello”替换为“Hello World”,但是当我包含标签时,根本不会显示任何内容。如果我删除标签,标签内的其余 URL 就会显示出来。知道我可能做错了什么,以及如何使用 javascript 将 div 替换为脚本对象吗?

编辑:我输错了脚本标签,但现在它已修复!

最佳答案

您的脚本标记格式错误,通过 innerHTML 插入脚本不会执行该脚本。如果您希望它加载源或执行其内部内容,您可以创建一个脚本元素并附加它。

var area = document.getElementById('area'),
script = document.createElement('script'); // Create the script
// Set the script source
script.src = 'myAwesomeScript.js';
// Remove the contents of the DIV
area.innerHTML = '';
// But why would you nest a script inside of a DIV, anyway?
area.appendChild(script); // Append it

如果您确实想用脚本标记替换整个 DIV:

var area = document.getElementById('area');

// * elem is the element to replace
// * src is the script's source
function replaceWithScript(elem, src) {
var script = document.createElement('script');
script.src = src;
// Insert script after elem
elem.parentNode.insertBefore(script, elem.nextSibling);
// Remove elem. Now script has its position, and it looks
// like it replaced it.
elem.parentNode.removeChild(elem);
}

replaceWithScript(area, 'myAwesomeScript.js');

最后,如果您希望脚本显示为文本,那么只需:

document.getElementById('area').innerText = '<script src="farboo.js"></script>';

关于javascript - 如何用脚本替换div?使用innerhtml不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30021192/

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