作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个名为“tags”的动态创建的复选框列表,我用 javascript 遍历它以确保只选中 1 个并获取值。如果由于某种原因这个复选框列表只有 1 个项目,我的脚本将不会查看它。当我提醒标签的长度时,我得到了未定义的信息。
var total=[];
for (var i=0; i < document.form1.tags.length; i++){
if(document.form1.tags[i].checked==true){
total.push(document.form1.tags[i].value);
}
}
if(total.length==0){
alert("Please select a product to edit.");
}else if (total.length>1){
alert("Please select only one product to edit.");
}else{
document.location = "go somewhere";
}
最佳答案
为什么需要复选框?这不是使用 Radiobuttons 的好机会吗? ?
关于javascript - 遍历具有一个元素的复选框数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13298744/
我是一名优秀的程序员,十分优秀!