jQuery html表格排序插件:tablesorter

tablesort是一款很好用的jQuery表格排序插件。 支持多种数据类型排序,会自动识别表格内容数据类型,使用也非常方便。

使用jQuery tablesort实现html表格方法:

1. 下载jQuery和tablesort脚本,并在html中引用该脚本文件:

2. 格式化需要排序的html表格:

a. 给需要排序的表格指定CCS类:class="sort-table"

b. 使用thead和tbody标签来标记表格头和表格正文

c. 在表格头thead中需要使用th标签定义表头

格式化好的html表格如下所示:

class="sort-table">

   
       
       
       
       
   


   
       
       
       
       
   
   
       
       
       
       
   

DateUsageCostRemain
2008-3-25book place @dhgu-40-40
2008-4-1book place @dhgu-40-80

3. 添加jQuery代码,启用html表格排序:

在body中对在第二步中指定的排序表格css类调用tablesorter()函数:


通过上面的3步,jQuery tablesort就可以实现对html表格的排序。

jQuery插件tablesort下载:

  • jquery.tablesorter.zip

你可能感兴趣的:(jQuery html表格排序插件:tablesorter)