标签:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title> form表单 </title>
</head>
<body>
<form id="biaodan" name="biaodan" action="#" method="post">
<div>
<div> 用户名: <input type="text"> </input> </div>
<div> 密码: <input type="password"> </input></div>
<div> <input type=checkbox name=sex> 男 </input>
<input type=checkbox name=sex> 女 </input>
</div>
<!--注:若是要可以多选,则不需要命名。--!>
<div> <select name=xiala id=xiala>
<option value=xiala>1</option>
<option value=xiala>2</option>
</select>
</div>
<div> <input type="button" value="增加">
<input type="button" value="删除">
<input type="submit" value="提交">
<input type="reset" value="重置">
</div>
</form>
</body>
<html>
<head lang="en">
<meta charset="UTF-8">
<title> 列表 </title>
</head>
<body>
<div>
<table>
<thead>
<th>标题一</th>
<th>标题二</th>
<th>标题二</th>
</thead>
<tbody>
<tr>
<td rowspan=2>总</td>
<td>行1,列1</td>
<td>行1,列2</td>
<td>行1,列3</td>
</tr>
<tr>
<td>行1,列2</td>
<td>行2,列1</td>
<td>行2,列3</td>
</tr>
<tr>
<td>行3,列1</td>
<td>行3,列2</td>
<td>行3,列3</td>
</tr>
</tbody>
</table>
</div>
</body>
标签:
原文地址:http://www.cnblogs.com/moyupianpian/p/5005952.html