我有桌子,它有 2 个标签。当我单击隐藏按钮时,将使用 $().empty() 消失。但我不知道如何恢复。
我不想使用 $().append 或类似添加新数据的东西。我想恢复它。
我怎样才能做到这一点。谢谢
<script type="text/javascript">
$(function(){
$('#hidden').click(function(){
$('.hidden').empty();
});
$('#restore').click(function(){
// restore defaults
});
});
</script>
<table>
<tr class="hidden">
<td>a</td>
<td>b</td>
</tr>
<tr>
<td>c</td>
<td>d</td>
</tr>
</table>
<input type = "button" id ='hidden' value="hidden"/>
<input type = "button" id ='restore' value="restore"/>