博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

网页table排序

Posted on 2013-10-15 15:11  ShangYT  阅读(226)  评论(0)    收藏  举报

好东西,http://www.kryogenix.org/code/browser/sorttable/

 

使用方法:

把需要的js文件保存到本地,和jsp页面同目录即可。

head写 <script src="sorttable.js"></script>

body写

<table class="sortable">
<thead>
  <tr><th>Person</th><th>Monthly pay</th></tr>
</thead>
<tbody>
  <tr><td>Jan Molby</td><td>£12,000</td></tr>
  <tr><td>Steve Nicol</td><td>£8,500</td></tr>
  <tr><td>Steve McMahon</td><td>£9,200</td></tr>
  <tr><td>John Barnes</td><td>£15,300</td></tr>
</tbody>
<tfoot>
  <tr><td>TOTAL</td><td>£45,000</td></tr>
</tfoot>
</table>


改变目录
js/*.js