可排序的表格--sorttable

最近同事做表格来统计分数。

例如一个学生类中有很多分数类型的字段例如。语文,数学,英语。

最后希望点击某个字段时分别对该字段进行排序。最后在后台写工具类,

、根据list的中的Student对象的某个字段进行来排序list。

很是繁琐。

呵呵告诉他有sorttable.js这个一个好工具。以下是例子。

当然,如果你要用的话,必须在网上下载sorttable.js文件。自己google吧。

最后你分别用鼠标点击姓名,语文,数学。就可以分别进行排序了。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script language="javascript" src=\'#\'" /script> //导入sortable.js文件
<style type="text/css">
table.sortable thead {
    background-color:#eee;
    color:#666666;
    font-weight: bold;
    cursor: default;
}

</style>
</head>

<body>
<table width="200" border="1" class="sortable">//注意这里,应用这个类样式就可以了
<thead>
<tr>
    <th>姓名</th>
    <th>语文</th>
    <th>数学</th>
</tr>
</thead>
<tbody>
<tr>
    <td>jack</td>
    <td>60</td>
    <td>70</td>
</tr>
<tr>
    <td>rose</td>
    <td>90</td>
    <td>65</td>
</tr>
<tr>
    <td>mary</td>
    <td>80</td>
    <td>40</td>
</tr>
</tbody>
</table>
</body>
</html>


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/atixujie/archive/2010/05/28/5630797.aspx

你可能感兴趣的:(表格,职场,sorttable,休闲)