Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/448.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/73.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript jquery表排序器类sticky false_Javascript_Jquery_Css_Tablesorter - Fatal编程技术网

Javascript jquery表排序器类sticky false

Javascript jquery表排序器类sticky false,javascript,jquery,css,tablesorter,Javascript,Jquery,Css,Tablesorter,我正在使用jquery插件tablesorter和StickyHeaders小部件。 在文档中声明添加了一个名为sticky false的类。 但我无法隐藏特定列上的粘性标题 我的javascript上没有设置任何选项,我像这样启动tablesorter。。。工作 $('#table').tablesorter({widgets: ['zebra','stickyHeaders', 'filter'] } 在我的桌子上添加以下内容。。。粘性假不起作用,其他两个起作用,但输入框不消失 <t

我正在使用jquery插件tablesorter和StickyHeaders小部件。 在文档中声明添加了一个名为sticky false的类。 但我无法隐藏特定列上的粘性标题

我的javascript上没有设置任何选项,我像这样启动tablesorter。。。工作

$('#table').tablesorter({widgets: ['zebra','stickyHeaders', 'filter'] }
在我的桌子上添加以下内容。。。粘性假不起作用,其他两个起作用,但输入框不消失

<th class="sticky-false filter-false sorter-false">Table</th>
表格
Im使用TableSorter2.14.5和TableSorter2.8+小部件

有人知道隐藏输入框的方法吗?

sticky false类用于整行,而不是单个列

<tr class="sticky-false">
    <th class="sorter-false" colspan="5">This row will not be sticky</th>
</tr>
<tr>
    <th class="filter-false sorter-false">Column 1</th>
    ...
    <th>Column 5</th>
</tr>
.tablesorter-filter-row .disabled { display: none; }