jQuery复制table header到表格的最下面详解编程语言

为了让table具有更好的可读性,我们可以将表格的header信息克隆一份到表格的底部,这种特效通过JQuery就很容易实现:

var $tfoot = $('');  
$($('thead').clone(true, true).children().get().reverse()).each(function(){ 
    $tfoot.append($(this)); 
}); 
$tfoot.insertAfter('table thead');

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8605.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论