任何人都知道插件或內置函數使表中的列可排序嗎?即我點擊列標題並按列排序行?jQuery表標題排序
13
A
回答
-1
27
1
有點重量級的,但最終的jQuery表管理器是jqGrid
3
Flexigrid是一個非常受歡迎的,而且容易表管理器/排序使用。
2
下面是兩塊排序和做很多其他的事情,以及我並沒有看到上市:
這裏也是比較多的數據表的表: http://blog.sematext.com/2011/09/19/top-javascript-dynamic-table-libraries/
0
jquery插件,使排序,篩選和分頁:breedjs
例子:
放在一個JS對象中的數據做就像這樣:
var data = {
people: [
{name: 'a', address: 'c', salesperson: 'b'},
{name: 'b', address: 'b', salesperson: 'a'},
{name: 'c', address: 'a', salesperson: 'c'},
]
};
breed.run({
scope: 'people',
input: data
});
HTML:
<table>
<thead>
<tr>
<th sort='name'>Name</th>
<th sort='address'>Address</th>
<th sort='salesperson'>Sales Person</th>
</tr>
</thead>
<tbody>
<tr b-scope="people" b-loop="person in people">
<td b-sort="name">{{person.name}}</td>
<td b-sort="address">{{person.address}}</td>
<td b-sort="salesperson">{{person.salesperson}}</td>
</tr>
</tbody>
</table>
現在,每當你想通過銷售人員進行排序,只叫它:
breed.sort({
scope: 'people',
selector: //field name
});
請參閱:
$("th").click(function(){
breed.sort({
scope: 'people',
selector: $(this).attr('sort')
});
});
相關問題
- 1. jQuery表按Attr排序標題
- 2. 按標題排序表
- 3. Jquery數據表排序圖標不會顯示在標題上
- 4. 在排序列表中排序標題的問題
- 5. 按排序標題查找元素 - jquery
- 6. jQuery Datatable按列標題排序
- 7. jQuery DataTable標題 - 數字排序
- 8. 被排序使用防止表的標題JQuery的可排序插件
- 9. jQuery標籤排序
- 10. jquery表排序
- 11. Jquery數據表下拉篩選器的標題排序
- 12. jQuery,通過點擊標題對colspan進行排序表列
- 13. jQuery的數據表排序數字的DIV內容與標題
- 14. jQuery - 數據表插件 - 排序問題
- 15. 表列標題不排序數據
- 16. 排序排序鏈表鏈表問題
- 17. 表格排序jQuery
- 18. jquery排序表列
- 19. jQuery的排序表
- 20. jQuery的排序表
- 21. 表排序問題
- 22. 點擊表格標題排序表:與asp:repeater問題也許?
- 23. JQuery - 排序div的問題
- 24. JQuery的排序小問題
- 25. jQuery UI的排序問題
- 26. Jquery動畫排序問題
- 27. jQuery可排序IE問題
- 28. jQuery UI可排序問題
- 29. jQuery可排序問題
- 30. 排序Jquery標籤面板
任擇議定書要求的jQuery – Homer 2011-03-15 20:42:42