我正在使用tableutils.js
插件,在其中,要在第一列上过滤的代码是:
$('#filter_searchMe_0').css('width','100px').detach().appendTo( "#outSide" );
当我用于过滤第二列时:
$('#filter_searchMe_2').css('width','100px').detach().appendTo( "#outSide" );
它不起作用,任何人都可以检查我是否错过了什么?
或者我可以声明这个,同时指定元素ID ('#filter_searchMe_2')
吗?
filter: {
type: ['text']
}
答案 0 :(得分:1)
已经解决了这个问题:
filter: {
type: ['noFilter','noFilter','text']
}
答案 1 :(得分:0)
$('#filter_searchMe_2').css('width','100px').detach().appendTo( "#outSide" );
而不是以上行使用此
$('#filter_searchMe_1').css('width','100px').detach().appendTo( "#outSide" );