gpt4 book ai didi

javascript - 如何让appendchild在单独的行而不是一行中写入html?

转载 作者:行者123 更新时间:2023-11-28 03:34:48 26 4
gpt4 key购买 nike

我有一个 append 输入元素的按钮。每当我这样做时,innerHTML都会返回

<input><input><input>

我希望它将每个新输入 append 到新行上

<input>
<input>
<input>

我尝试创建一个文本节点=“”我还尝试寻找返回键的符号,以便我可以将其 append 在输入元素之前,但我似乎找不到它

HTML:

<!DOCTYPE html>
<head>
</head>
<body>
<form id="formID">
<input type="number">
<input type="number">
<input type="button" id="addButton" value="Add Element">
</form>
</body>
</html>

JS:

let addButton = document.getElementById("addButton");
let form = document.getElementById("formID");
addButton.onclick = function test() {
let input = document.createElement("input");
form.appendChild(input);
};

我想要一个类似于下面的innerHTML代替

最佳答案

您可以简单地使用<br>元素将每个输入 append 到下一行。
尝试以下代码,

    <!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<!DOCTYPE html>
<head>
</head>
<body>
<form id="formID">
<input type="number">
<input type="number">
<input type="button" id="addButton" value="Add Element">
</form>
</body>
</html>

</body>
</html>

<script type="text/javascript">
let addButton = document.getElementById("addButton");
let form = document.getElementById("formID");
addButton.onclick = function test() {
var br = document.createElement("BR");
let input = document.createElement("input");
form.appendChild(br);
form.appendChild(input);
};

</script>

关于javascript - 如何让appendchild在单独的行而不是一行中写入html?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57840329/

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