单一参数控件:
text 文本 radio 单选 password 密码 hidden 隐藏
定义:<input type="type" name=" " value=" " >
drop-down box 下拉框
定义:< select name=" ">
<option value="A">A</option>
<option value="B">B</option>
</select>
接收: String parameter=request.getParameter("参数名");
一组参数:
checkbox 复选框
定义: <input type="checkbox" name=" A" value=" " >
<input type="checkbox" name=" A" value=" " >
<input type="checkbox" name=" A" value=" " >
<input type="checkbox" name=" A" value=" " >
接收:
<%
String hobby[]=request.getParameterValues("hobby");
if(hobby!=null)
{
%>
<h3>hobby:
<%
for(int x=0;x<hobby.length;x++)
{
%>
<%=hobby[x] %>
<%
}
%>
</h3>
<%
}
%>
1168

被折叠的 条评论
为什么被折叠?



