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 })