gpt4 book ai didi

jquery - 当 TBody tr 为空时移除 TFoot

转载 作者:太空宇宙 更新时间:2023-11-04 10:18:59 24 4
gpt4 key购买 nike

我有一个包含页眉、正文和页脚的表格。当我的表体为空时,我还需要隐藏我的表页脚。

我的代码:

$("#tid tfoot tr").html("");

最佳答案

试试这个:

<TABLE id="myTable">
<THEAD>
<TR> <TD>..HEADER.. </TD> </TR>
</THEAD>
<TBODY>
<TR> <TD>...first row... </TD> </TR>
<TR> <TD>...second row... </TD> </TR>
<TR> <TD>...third row... </TD> </TR>
</TBODY>
<TFOOT>
<TR> <TD>..FOOTER.. </TD> </TR>
</TFOOT>
</TABLE>


<script type="text/javascript">
$( document ).ready(function() {
if(!$.trim($("#myTable tbody").html())) { // check if empty
document.getElementById("myTable").deleteTFoot(); // delete footer
}
});
</script>

关于jquery - 当 TBody tr 为空时移除 TFoot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37000009/

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