gpt4 book ai didi

javascript - 通过为特定的 div 标签使用 javascript 创建表单

转载 作者:行者123 更新时间:2023-11-28 01:17:46 25 4
gpt4 key购买 nike

我需要使用 JavaScript 创建表单。然后我创建了如下代码。我需要将此表格添加到 div id="form1"
通过使用 getElementsById。但它不起作用。

<html>
<head>
<title>
</title>
</head>
<body>
<div id="form1">
</div>
<script>
var f = document.createElement("form");
f.setAttribute('method',"post");
f.setAttribute('action',"submit.php");

var i = document.createElement("input");
i.setAttribute('type',"text");
i.setAttribute('name',"username");

var s = document.createElement("input");
s.setAttribute('type',"submit");
s.setAttribute('value',"Submit");

f.appendChild(i);
f.appendChild(s);

document.getElementsById("form1")[0].appendChild(f);
</script>
</body>
</html>

最佳答案

它必须是这样的:

document.getElementById("form1").appendChild(f);

这是错误的:

document.getElementsById("form1")[0].appendChild(f);

工作代码here

编辑

这是您可以附加一个 table 的方法

希望这对您有所帮助!

关于javascript - 通过为特定的 div 标签使用 javascript 创建表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35097978/

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