P粉7859057972023-08-28 10:42:03
这是另一个库。
需要进行的更改是 -
添加排序js
将类名sortable
添加到表中。
点击表格标题对表格进行相应排序:
<script src="https://www.kryogenix.org/code/browser/sorttable/sorttable.js"></script> <table class="sortable"> <tr> <th>Name</th> <th>Address</th> <th>Sales Person</th> </tr> <tr class="item"> <td>user:0001</td> <td>UK</td> <td>Melissa</td> </tr> <tr class="item"> <td>user:0002</td> <td>France</td> <td>Justin</td> </tr> <tr class="item"> <td>user:0003</td> <td>San Francisco</td> <td>Judy</td> </tr> <tr class="item"> <td>user:0004</td> <td>Canada</td> <td>Skipper</td> </tr> <tr class="item"> <td>user:0005</td> <td>Christchurch</td> <td>Alex</td> </tr> </table>
P粉6429205222023-08-28 00:27:23
检查您是否可以使用下面提到的任何 JQuery 插件。简直太棒了,提供了广泛的工作选项,并且集成起来更省力。 :)
https://github.com/paulopmx/Flexigrid - Flexgrid
http://datatables.net/index - 数据表。
https://github.com/tonytomov/jqGrid
如果没有,您需要有一个指向那些调用服务器端脚本来调用排序的表头的链接。