作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想向 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/
我是一名优秀的程序员,十分优秀!