以下是我的代码
脚本
$(document).ready(function(){
$('#click').click(function(){
$('#table').append('<tr><td> </td></tr>');
})
$('#remove').click(function(){
$('#table').remove('<tr><td> </td></tr>');
})
})
HTML
<table width="100%" border="1" cellspacing="0" cellpadding="0" id="table">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<div id="click">click</div>
<div id="remove">remove</div>
当我添加一行时效果很好,但我不知道如何删除表格的最后一行。您也可以查看在线演示。
我怎样才能做到这一点?
此外,我希望当用户还单击任何行时它会自行删除。我试过了,但是有问题。如果您单击该行,它会自行删除,但是当您通过单击#click 添加行时,该行不会通过单击它来自行删除。
这是我的代码:
脚本
$(document).ready(function(){
$('#click').click(function(){
$('#table').append('<tr><td> </td></tr>');
})
$('#remove').click(function(){
$('#table tr:last').remove();
})
$('#table tr').click(function(){
$(this).remove();
});
})