我刚刚下载了tablesorter并将其启动并运行。
每次用户对表格进行排序时,我都需要运行一些代码,而且我无法在文档中找到任何内容: - (
所以如果有人知道这会很棒,谢谢!
每次对列进行排序时是否会触发事件?我需要成为排序完成后的事件
答案 0 :(得分:16)
您可以将'sortEnd'绑定到tablesorter,请参阅文档:
http://tablesorter.com/docs/example-triggers.html
来自tablesorter文档的:
$(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
});
});