其他分享
首页 > 其他分享> > datatable 表头增加搜索

datatable 表头增加搜索

作者:互联网

 1 $('#table thead tr').clone(true).appendTo('#table_box thead');
 2 $('#table thead tr:eq(1) th').each( function (i) {
 3         var title = $(this).text();
 4         var index = $(this).index();
 5         var enVal = columns[index].enVal;
 6         // 列搜索
 7         $(this).html('<input type="text" style="width:100%;" class="column_search_input" data-column="'+ index +'" data-en="'+enVal+'"/>');
 8         $('input', this).on( 'keyup change', function (e) {
 9             代码code
11         })        
13 })

 

     

标签:function,index,tr,表头,搜索,var,table,datatable,thead
来源: https://www.cnblogs.com/fyjz/p/13132309.html