I have construted my table as follows:
Name 2条回答 时光取名叫无心 (楼主) 2020-12-10 22:08 Something like? $('#dataTable thead').prepend('NameValue'); And for the deleting: $('#dataTable thead tr').click(function() { $(this).hide(); //hide the row, this doesn't delete it. }); . 0 讨论(0) 查看其它2个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
Something like?
$('#dataTable thead').prepend('NameValue');
And for the deleting:
$('#dataTable thead tr').click(function() { $(this).hide(); //hide the row, this doesn't delete it. });
.