这是我的复选框列表和我需要提交数据的按钮..
dummy1
dummy2
dummy3
dummy4
单击按钮时我正在使用下面的类..
function getCheckboxValue() {
var l1 = document.getElementById("check1");
var l2 = document.getElementById("check2");
var l3 = document.getElementById("check3");
var l4 = document.getElementById("check4");
var res=" ";
if (l1.checked == true){
var pl1 = document.getElementById("check1").value;
res = pl1 + ",";
}
else if (l2.checked == true ){
var pl2 = document.getElementById("check2").value;
res = res + pl2 + ",";
}
else if (l3.checked == true){
document.write(res);
var pl3 = document.getElementById("check3").value;
res = res + pl3 + ",";
}
else if (l4.checked == true){
var pl4 = document.getElementById("check4").value;
res = res + pl4 + ",";
}
return document.getElementById("result_checkbox").innerHTML = "You have selected " + res ;
}
从上面的方法中,尽管我选中了多个复选框,但单击按钮时,我只能在 checkboxvalues 中看到一个值,如图所示。
有人可以告诉我如何改进我的代码,以便在选中多个复选框时显示所有值吗?
如果 check1 和 check2 都选择输出应该是
输出:
You have selected INT,MV
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
您正在使用 if-else 梯形图,这意味着如果其中一个条件满足并被执行,其他块将被忽略。您可以使用多个 if 块来避免这种情况。
您正在使用
if else if语句,因此一旦其中一个语句被执行,其余语句就不会被执行。您可以为每个复选框尝试一个 if 语句,它将完成工作。var res=" "; if (l1.checked == true){ var pl1 = document.getElementById("check1").value; res = pl1 + ","; } if (l2.checked == true ){ var pl2 = document.getElementById("check2").value; res = res + pl2 + ","; } if (l3.checked == true){ document.write(res); var pl3 = document.getElementById("check3").value; res = res + pl3 + ","; } if (l4.checked == true){ var pl4 = document.getElementById("check4").value; res = res + pl4 + ","; }