JSP表单开发
程序员文章站
2022-06-01 22:49:53
...
1.单一表单元素数据获取
(1)获取密码框中的数据:
passwordForm.jsp:
<form action="passordForm_result.jsp",method="post">
请输入账户:<input name="account" type="text"><BR>
请输入密码:<input name="password" type="password"><BR>
<input type="submit" value="注册">
</form>
passwordForm_result.jsp:
<body>
<%
String password=request.getParameter("password");
out.println("密码为:"+password);
%>
</body>
2.获取多行文本框中的数据:
<body>
<form action="passordForm_result.jsp",method="post">
请输入账户:<input name="account" type="text"><BR>
请输入密码:<input name="password" type="password"><BR>
请输入个人信息:<BR>
<textarea name="info" rows="5"cols="30"></textarea>
<input type="submit" value="注册">
</form>
</body>
<body>
<%
String info=request.getParameter("info");
out.println("个人信息为:"+info);
%>
</body>
3.获取单选按钮中数据:
<body>
<form action="radioForm_result.jsp",method="post">
请输入账户:<input name="account" type="text"><BR>
请输入密码:<input name="password" type="password"><BR>
请选择性别:<BR>
<input name="sex" type="radio" value="boy" checked>男
<input name="sex" type="radio" value="girl">女<BR>
<input type="submit" value="注册">
</form>
</body>
<body>
<%
String sex=request.getParameter("sex");
out.println("性别为:"+sex);
%>
</body>
4.获取下拉菜单中的数据
selectForm.jsp:
<body>
请您输入自己的信息进行注册
<form action="selectForm_result.jsp" method="post">
请您输入账号:<input name="account"type="text"><BR>
请您输入密码:<input name="password"type="password"><BR>
请您选择家乡:
<select name="home">
<option value="beijing">北京</option>
<option value="shanghai">上海</option>
<option value="yulin">玉林</option>
</select>
<input type="submit"value="注册">
</form>
</body>
selectForm_result.jsp:
<body>
<%
String home=request.getParameter("home");
out.println("家乡为:"+home);
%>
</body>