<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>table</title>
<script type="text/javascript">
function add(){
var table = document.getElementById('table');
var tr = document.createElement('tr');
var td = document.createElement('td');
td.innerHTML = '<input type="checkbox" name="" id="" />';
tr.appendChild(td);
td = document.createElement('td');
td.innerHTML = '张三';
tr.appendChild(td);
td = document.createElement('td');
td.innerHTML = '123';
tr.appendChild(td);
td = document.createElement('td');
td.innerHTML = '男';
tr.appendChild(td);
td = document.createElement('td');
td.innerHTML = '<input type="button" value="删除" οnclick="deleteRow(this)" /><input type="button" value="修改" />';
tr.appendChild(td);
table.appendChild(tr);
}
function deleteRow(input){
input.parentNode.parentNode.remove();
}
</script>
</head>
<body>
<div>
用户名:<input type="text" name="" id="username">
密码:<input type="text" name="" id="password">
性别:<select id="sex">
<option>男</option>
<option>女</option>
</select>
<input type="button" name="" value="添加" οnclick="add()">
</div>
<br>
<div>
<input type="checkbox">全选 <input type="button" value="删除">
<br>
<br>
<table border="1px" width="600px" id="table">
<thead>
<tr>
<td>选择</td>
<td>用户名</td>
<td>密码</td>
<td>性别</td>
<td>操作</td>
</tr>
</thead>
<tbody id="user">
</tbody>
</table>
</div>
</body>
</html>