在网页中很多的时候要用到checkbox,但是这个东西也是让人有点头痛的东西,关于它的选中值的接收
在asp和jsp中是不相同的,asp中把checkbox选中的值当成了一个用","分割的字符串,而在jsp中
把选中的值当成了一个数组,下面我们就看看在asp和jsp中如何来实现checkbox的值的接受:
1.先设定一个checkbox的布局
<table border><form name="form1" action="" method="get">
<tr bgcolor="e8e8e8"><td><input type=checkbox name="box" value="1"> 1</td></tr>
<tr><td><input type=checkbox name="box" value="2"> 2</td></tr>
<tr><td><input type=checkbox name="box" value="3"> 3 </td></tr>
<tr><td><input type=checkbox name="box" value="4"> 4</td></tr>
<tr><td><input type=checkbox name="box" value="5"> 5</td></tr>
<tr><td><input type="button" value="All" οnclick="CheckAll()"> <input type="button"
value="no" οnclick="UnCheckAll()"> <input type="submit" value="go"></td></tr>
</form>
</table>
2.在asp中的接受
<%
Dim strbox,str_select
strbox = CStr(request.querystring("box"))
response.write strbox
%>
通过上面的代码我们测试可以看到,(假设为全选)则将打印出1,2,3,4,5
这就是asp中checkbox的值的传递,要是需要其他的用途我们可以用split来分割开来.
3.在jsp中的接受
<%
String[] boxes= request.getParameterValues("box");
if (boxes != null && boxes.length != 0) {
for(int i=0;i<boxes.length;i++){
out.println(boxes[i]);
}
}else{
out.println("no select");
}
%>