JQuery仅克隆thead表的每个tr
我只想克隆 html tr 和 th,但不想捕获外部 thead /thead 元素。
<thead id="justCloneTR"> // don't clone
<tr id="Vehicle_1"> // clone
<th>1</th> // clone
<th>2</th> // clone
</tr> // clone
</thead> // don't clone
<div id="putCloneHere"></div>
JS
$('#justCloneTR').clone('tr').appendTo('#putCloneHere');
I just want to clone the html tr and th's, but not capture the outer thead /thead elements.
<thead id="justCloneTR"> // don't clone
<tr id="Vehicle_1"> // clone
<th>1</th> // clone
<th>2</th> // clone
</tr> // clone
</thead> // don't clone
<div id="putCloneHere"></div>
JS
$('#justCloneTR').clone('tr').appendTo('#putCloneHere');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有
tr
的id
那么您就可以使用它。.clone()
参考:http://api.jquery.com/clone/< /a>请记住,克隆后,您应该在将克隆元素添加到 DOM 之前更改其 id,因为您不应该有 2 个具有相同 id 的元素。
试试这个。
If you have
id
to thetr
then you can just use this..clone()
reference: http://api.jquery.com/clone/Remember after cloning you should change the id of cloned element before you add it to DOM because you should not have 2 elements with same id.
Try this.