我發現在互聯網上驗證碼:的JQuery的tablesorter memorizeSortOrder部件
$.tablesorter.addWidget({
id: "memorizeSortOrder",
format: function(table) {
if (!table.config.widgetMemorizeSortOrder.isBinded) { // only bind if not already binded
table.config.widgetMemorizeSortOrder.isBinded = true;
$("thead th:visible",table).click(function() {
var i = $("thead th:visible",table).index(this);
$.get(table.config.widgetMemorizeSortOrder.url+i+'|'+table.config.headerList[i].order);
});
} // fi
}
});
發現:http://www.adspeed.org/2008/10/jquery-extend-tablesorter-plugin.html
我想記住我的AJAX表的排序等各個更新(表更改完全沒有追加),它保持原樣。
問題是..怎麼可以用這個?
$("#tablediv").load(
"table.php",
null,
function (responseText, textStatus, req) {
$("#table").trigger("update");
}
);
我需要做什麼改變?
我剛剛更新了我的[的tablesorter(HTTPS的叉: //github.com/Mottie/tablesorter)與一個名爲'saveSort'的新小部件一起使用,該小部件將最後一次存儲到本地存儲中,並使用cookie後備。查看[demo](http://mottie.github.com/tablesorter/docs/example-widget-savesort.html)。 – Mottie 2012-02-01 05:25:33