gpt4 book ai didi

javascript - 如何将 name 属性添加到 DOM 输入复选框对象

转载 作者:行者123 更新时间:2023-12-01 05:36:10 25 4
gpt4 key购买 nike

我想向 DOM 输入对象添加一个名称,以便可以将其保存到数据库中,但我无法弄清楚。

<!DOCTYPE html>
<html>
<body>

<p>Click the button to create a Checkbox.</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
var x = document.createElement("INPUT");
x.setAttribute("type", "checkbox");
document.body.appendChild(x);
}
</script>

</body>
</html>

此代码仅制作动态复选框,但我不知道如何向其添加名称以通过 $_POST['name']; 发送它

最佳答案

设置属性名称

 function myFunction() {
var x = document.createElement("INPUT");
x.setAttribute("type", "checkbox");
x.setAttribute("name", "checkbox_name");
document.body.appendChild(x);
}

you need to add input element in form element

关于javascript - 如何将 name 属性添加到 DOM 输入复选框对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33950803/

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