gpt4 book ai didi

javascript - 使用 appendChild() 和 createElement() 创建 HTML DOM 元素时仅显示纯文本

转载 作者:行者123 更新时间:2023-11-30 09:43:02 24 4
gpt4 key购买 nike

我使用 javascript createElement()appendChild() 编写了一些代码,但它不起作用。但是,当我应用 jQuery 方法时,它可以正常工作。谁能告诉我为什么?

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
function foo1(){
var test_btn = document.createElement("button").appendChild(document.createTextNode("test_btn"));
document.getElementById("WhyThisNothing").appendChild(test_btn);
}
function foo2(){
$('#WhyThisNothing').append('<button>test_btn</button>');
}
function foo3(){
$('#WhyThisNothing').append($('<button></button>',{text:"test_btn"}));
}
</script>
</head>
<body>
<button onclick="foo1()" id="btn">Click me then error 1:(</button>
<button onclick="foo2()" id="btn">Click me then ok 2:(</button>
<button onclick="foo3()" id="btn">Click me then ok 3:(</button>
<div id="WhyThisNothing"></div>
</body>
</html>

最佳答案

appendChild 返回附加的子项,而不是它被附加到的父项。

因此,您必须将文本单独附加到元素,而不是将其链接起来,因为您只剩下文本节点

function foo1(){
var test_btn = document.createElement("button");

test_btn.appendChild(document.createTextNode("test_btn"));

document.getElementById("WhyThisNothing").appendChild(test_btn);
}

关于javascript - 使用 appendChild() 和 createElement() 创建 HTML DOM 元素时仅显示纯文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40179862/

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