我刚刚下载了 tablesorter 并启动并运行了它。
每次用户对表格进行排序时,我都需要运行一些代码,但我在文档中找不到任何内容:-(
所以如果有人知道那就太好了,谢谢!
每次对列进行排序时是否都会触发一个事件?我需要成为排序完成后的事件
您可以将“sortEnd”绑定到表排序器,请参阅文档:
https://mottie.github.io/tablesorter/docs/example-triggers.html
来自表格排序器文档:
$(document).ready(function() {
// call the tablesorter plugin, the magic happens in the markup
$("table").tablesorter();
//assign the sortStart event
$("table").bind("sortStart",function() {
//do your magic here
}).bind("sortEnd",function() {
//when done finishing do other magic things
});
});