How to clone a <tr> element without data but only the structure by using jQuery?
Is there a quick way to clone a <t开发者_如何学编程r>
element without its content in cells? Basically to have a pure <tr>
element having only the same structure as the original?
If you want a deep clone of the element without the text content, you can write something like:
var $cloned = $("tr").clone().children().text("").end();
精彩评论