我有一个复选框表,我不仅要返回选中的值,还要返回未选中的值。
function aa(){
var form1=document.getElementById("form1");
form1.action="SomeAction.do?flag=doSomething";
form1.submit();
}
<form id="form1" method="post" >
<table table class="tg">
<tr>
<th>1</th>
<th><input type="checkbox" name="selected" value="1" /></th>
<th>111</th>
<th>2</th>
<th><input type="checkbox" name="selected" value="1" /></th>
<th>222</th>
<th>3</th>
<th><input type="checkbox" name="selected" value="1" /></th>
<th>333</th>
</table>
</form>
我接受带有此复选框的值...
String[] nums = request.getParameterValues("selected");
我想使每个选中的项都为1,对于未选中的项为0或null。 例如,如果选中1和3,则我的数组将为[1,,3]或[1,0,3]