我正在使用Mottie https://mottie.github.io/tablesorter/的jQuery插件,并且已经看到了使用外部链接重置过滤器的功能。我看到了与排序相同的东西。但是,我希望能够重置过滤器和恢复默认排序。
这就是我所拥有的,它不适用于排序,但至少是重置过滤器。
HTML:
<a href="#" id="reset-link">reset</a>
JavaScript的:
$('#reset-link').click(function(){
$('#mytable').trigger('sortRestart').trigger('filterReset');
return false;
});
答案 0 :(得分:3)
颠倒触发器的顺序(demo)
$(function() {
var $table = $('#mytable');
$('#reset-link').click(function() {
$table.trigger('filterReset').trigger('sortReset');
return false;
});
$table.tablesorter({
theme: 'blue',
sortList: [[0, 0], [1, 0], [2, 0]],
widgets: ['filter', 'zebra']
});
});