一
1
2
3
4
5
6
7
8
9
|
单行文本框:<input type= "text" name= "name" value= "value" >。 密码框:<input type= "password" name= "name" value= "value" >。 单选按钮:<input type= "radio" name= "name" value= "value" >。 复选框:<input type= "checkbox" name= "name" value= "value" >。 多行文本框:<textarea rows= "8" cols= "40" name= "name" >value</textarea>。 下拉框和列表框:<select name= "name" ><option value= "X" >X</option></select>。 提交按钮:<input type= "submit" value= "value" >。 重置按钮:<input type= "reset" value= "value" >。 Form 表单:<form action= "目标文件" >表单元素</form>。 |
第一行一般是表头
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<table> <tr> <th>第一列</th> <th>第二列</th> <th>第三列</th> </tr> <tr> <td>第一行第一列的值</td> <td>第一行第二列的值</td> <td>第一行第三列的值</td> </tr> <tr> <td>第二行第一列的值</td> <td>第二行第二列的值</td> <td>第二行第三列的值</td> </tr> </table> |
二.表头
三web