<table>
<tr name="thd">
<th>用户名</th>
<th>性别</th>
<th>年龄</th>
</tr>
</table>
<input type="button" onclick="add()" value="添加行">
function add(){
//remove():删除标签
$("#data").remove();
//append:插入标签
//prepend:要插入到目标元素内部前端的内容
$("table").append("<tr id='data'><td>a</td><td>boy</td><td>12</td></tr>");
}
<tr name="thd">
<th>用户名</th>
<th>性别</th>
<th>年龄</th>
</tr>
</table>
<input type="button" onclick="add()" value="添加行">
function add(){
//remove():删除标签
$("#data").remove();
//append:插入标签
//prepend:要插入到目标元素内部前端的内容
$("table").append("<tr id='data'><td>a</td><td>boy</td><td>12</td></tr>");
}