创建复选框有 3 种方法:
通过直接html代码通过js代码,创建每个元素、属性、内容并将子元素appendchild到父元素通过 js 代码,带有innerhtml 和模板文字
通过直接 html 代码:
登录后复制
通过js代码,创建每个元素、属性、内容并将子级appendchild到父级:
const root = document.getelementbyid("root"); const colors = ["red", "green", "blue", "yellow"]; colors.foreach((color) => { // create id const id = color; // create label const label = document.createelement("label"); label.setattribute("for", id); // create checkbox input element const input = document.createelement("input"); input.type = "checkbox"; input.name = "color"; input.id = id; input.value = color; // appendchild child to parent label.appendchild(input); label.appendchild(document.createtextnode(color)); root.appendchild(label); });
登录后复制
通过js代码,带有innerhtml和模板文字:
const root = document.getElementById("root"); const colors = ["Red", "Green", "Blue", "Yellow"]; const checkbox = colors.map((color)=>` ` ).join(""); root.innerHTML = checkbox;
登录后复制
以上就是创建复选框的一些有效方法的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2664065.html