首先,我有这么一表单如下:
<html>
<head>
</head>
<form name="form1" method="post" action="cg.asp">
<p>
<input type="checkbox" name="checkbox" value="77" >
<input type="checkbox" name="checkbox" value="88" checked>
<input type="checkbox" name="checkbox" value="3">
<input type="checkbox" name="checkbox" value="4">
</p>
<p>
<input type="submit" name="Submit" value="提交">
</p>
</form>
</html>
注意,各name的值是相同的,现在我想要达到一个目的:
现在我要取得复选框满足如下条件的值:
复选框是选中的.
那么假设表单中有很多的复选框,我想用一个循环语句来取得满足上述条件的值又该怎么办呢?
谢谢!!!!
參考答案:<%
bbb=split(request("checkbox"))
for i=0 to UBound(bbb)
Response.Write(bbb(i)&"<br>")
next
%>