-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurvey.html
More file actions
19 lines (19 loc) · 825 Bytes
/
Copy pathsurvey.html
File metadata and controls
19 lines (19 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>getParamterValues和getParamter的使用</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<form action="result.jsp" method="post">
<h2>调查问卷</h2>
姓名:<input name="uName" type="text" /><br>
性别:<input name="sex" value="男" type="radio" />男 <input name="sex" value="女" type="radio" />女<br>
爱好:<input type="checkbox" name="hobs" value="阅读">阅读
<input type="checkbox" name="hobs" value="旅游">旅游
<input type="checkbox" name="hobs" value="运动">运动
<input type="checkbox" name="hobs" value="网游">网游<br>
<input type="submit" value="提交">
</form>
</body>
</html>