我有一个名为“标签”的动态创建的复选框列表,我使用 javascript 循环以确保仅选中 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";
}