gpt4 book ai didi

jquery - 使用 TableSorter 插件重置过滤器*和*默认排序

转载 作者:行者123 更新时间:2023-12-01 07:46:33 27 4
gpt4 key购买 nike

我正在使用 Mottie 的 jQuery 插件 https://mottie.github.io/tablesorter/并看到了使用外部链接重置过滤器的能力。我在排序中也看到过同样的情况。但是,我希望能够重置过滤器恢复默认排序。

这就是我所拥有的,它不适用于排序,但至少可以重置过滤器。

HTML: <a href="#" id="reset-link">reset</a>

JavaScript:

$('#reset-link').click(function(){
$('#mytable').trigger('sortRestart').trigger('filterReset');
return false;
});

最佳答案

反转触发器的顺序 ( 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']
});
});

关于jquery - 使用 TableSorter 插件重置过滤器*和*默认排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36696765/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com