-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
62 lines (61 loc) · 2.22 KB
/
form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表单</title>
</head>
<body>
<form action="http://baidu.com" method="get">
<input type="hidden" name="action" value="login"/>
<h1 align="center">用户注册</h1>
<table align="center">
<tr>
<td> 用户名称 : </td>
<td><input type="text" name="username" value="默认值"/> </td>
</tr>
<tr>
<td >用户密码 : </td>
<td><input type="password" name="password" value="默认值"/></td>
</tr>
<tr>
<td> 确认密码 : </td>
<td><input type="password" value="默认值"/></td>
</tr>
<tr>
<!--checked表示默认选中-->
<td> 性别 : </td>
<td>
<input type="radio" value="boy" name="sex" checked="checked"/> 男
<input type="radio" value="girl" name="sex"/> 女
</td>
</tr>
<tr>
<td> 兴趣爱好 : </td>
<td>
<input type="checkbox" name="hobby" value="Java"/> Java
<input type="checkbox" name="hobby" value="C#"/> C#
</td>
</tr>
<tr>
<td> 国籍 : </td>
<td><select name="country">
<option value="none">请选择国籍</option>
<option value="ch">中国</option>
<option value="jp">日本</option>
<!--selected表示默认选中-->
<option value="usa" selected="selected">美国</option>
</select></td>
</tr>
<tr>
<td> 自我评价 : </td>
<!--rows设置显示几行的高度, cols设置每行显示几个字符宽度-->
<td><textarea rows="10" cols="20" name="desc"></textarea></td>
</tr>
<tr>
<td><input type="reset" name="desc" value="重置"/></td>
<td><input type="submit" value="提交"/></td>
</tr>
</table>
</form>
</body>
</html>