克隆一个没有显示样式并附加到tbody末尾的行

时间:2009-11-14 09:51:54

标签: jquery html-table clone

使用jQuery,我如何创建一个以display: none为样式的Row的克隆,并附加到tbody的末尾?

我的表是:

<table>
  <tbody>
   <tr id="tRow0" style="display : none ;">
      <td>  // Some contents (textbox,dropdown etc..)
     </td>
   </tr>
 </tbody>
</table>

我想创建隐藏行的克隆并附加到表。这个新行应该对屏幕可见。

1 个答案:

答案 0 :(得分:9)

$('#tRow0').clone().show().appendTo( $('#tRow0').parent() );