我正在使用 jpList - 插件。
链接:http: //jplist.no81no.com/start-here.html
我正在过滤一个无序列表,比如说 100 个列表项。例如,jpList 过滤 25 个项目,每页显示 5 个项目。使用“重绘回调”功能(http://jplist.no81no.com/html/js-settings.html#redraw-callback-function),我可以轻松获得所有 200 项或显示在页面,但我不知道如何接收 25 个过滤项目的列表。
示例代码:
// create jplist
$('#content-area').jplist({
restore_event: 'jplist_restore',
items_box: '.list',
item_path: '.list-item',
panel_path: '.jpanel',
redraw_callback: function (collection, $dataview, statuses) {
// ???
}
});
有任何想法吗?