码迷,mamicode.com
首页 > 其他好文 > 详细

Clone table header and set as the first element, and replace header's th with td

时间:2015-08-04 15:13:32      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

Clone table header and replace header‘s th with td

var tableHeaderRow = ‘#tableId tbody tr:nth-child(1)‘; // this is th.
var copy = $(tableHeaderRow).clone();
$(‘#tableViewHeader‘).prepend(copy); // add this row as the first element in parent container.

$(‘#tableViewHeader‘).find(‘th‘).wrapInner(‘<td />‘).contents().unwrap();
$(‘#tableViewHeader‘).find(‘tbody‘).contents().unwrap();

 

Clone table header and set as the first element, and replace header's th with td

标签:

原文地址:http://www.cnblogs.com/webglcn/p/4701736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!