是否可以仅使用 jQuery tablesorter 隐藏某些列的过滤器?前三列不需要过滤器(它们只会使表格更长)。
<table id="userTable" class="table-sorter table table-striped table-bordered">
<thead>
<tr>
<th>
<input type="checkbox" /></th>
<th></th>
<th></th>
<th></th>
<th>Login
</th>
<th>Email
</th>
<th>Company
</th>
<th>LastName
</th>
<th>FirstName
</th>
<th>ZipCode
</th>
<th>City
</th>
<th class="filter-select" data-placeholder="Select">Country
</th>
</tr>
</thead>
谢谢