gpt4 book ai didi

jquery - 我需要将表格行包装到 div 中

转载 作者:行者123 更新时间:2023-12-01 00:51:42 25 4
gpt4 key购买 nike

我需要将表格行包装到 div 中,我确实这样做

$('table tr').each(function(){
$(this).insertBefore('<div>');
$(this).insertAfter('</div>');
})

但似乎不起作用更新 fiddle http://jsfiddle.net/EsdR2/1/

最佳答案

如果您试图将它们分成单独的部分而不是一行,那么也许可以尝试 tbody 方法。

<table class="table">
<tbody class="first-part">
<tr>
<td>first</td>
</tr>
</tbody>
<tbody class="second-part" style="display:none">
<tr>
<td>second</td>
</tr>
</tbody>
</table>

看到淡出后进行编辑,然后你可以尝试这个 javascript..

var firstPart = $('tbody.first-part');
var secondPart = $('tbody.second-part');

$('#SomeButton').click(function () {
firstPart.fadeOut("fast");
secondPart.fadeIn("slow");
});

这里是一个带有淡出功能的 jsFiddle。 http://jsfiddle.net/u3fNL/1/

关于jquery - 我需要将表格行包装到 div 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18617815/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com