jquery文档插入

来源:互联网 发布:php websocket 编辑:程序博客网 时间:2024/06/08 11:49
<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>");
}
原创粉丝点击