jquery.tableSort.js表格排序插件使用方法详解

本文实例为大家分享了jquery.tableSort.js表格排序的具体代码,供大家参考,具体内容如下

1.一定要引jQuery包,所有jq插件都是基于jQuery包的

2.如果想指定哪一栏不排序这样写 $(“#mytable”).tablesorter({headers:{5:{sorter:false}}}); 第5列的sorter为false就OK了

参考:http://www.jb51.net/article/105217.htm

<!DOCTYPE html>
<html>

 <head>
 <meta charset="utf-8" />
 <title></title>
 <script type="text/javascript" src="js/jquery-1.9.0.min.js"></script>
 <script type="text/javascript" src="js/jquery.tablesort.js"></script>
 <style type="text/css">
  #tip {
  border: solid 1px black;
  width: 358px;
  line-height: 21px;
  height: 21px;
  padding: 2px 10px;
  background-color: pink;
  font-size: 12px;
  text-align: center;
  margin: 10px auto 10px;
  }

  .table {
  width: 380px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: center;
  }

  .table tr td,
  .table tr th {
  background: greenyellow;
  border: solid 1px red;
  color: #666;
  height: 30px;
  /*line-height: 30px;*/
  }

  .table tr th {
  background: #89AFB1;
  color: red;
  text-align: center;
  font-size: 14px;
  }

  .table a,
  .table a:visited {
  color: red;
  text-decoration: none
  }

  .table a:hover,
  .table a:active {
  color: blue;
  text-decoration: none
  }
 </style>

 <script type="text/javascript">

  $(function() {
  $('table').tablesort().data('tablesort');
  var i = 0;
  $(".table tr th a").click(function() {
   if (i % 2 == 0) {
   $(".sj").text('升序');
   i++;
   } else {
   $(".sj").text('降序');
   i++;
   }
  })
  })
 </script>
 </script>
 </head>

 <body>

 <div id="tip">默认无排列规则(<span class="sj">----</span>)</div>

 <table id="tbStudent" class="table">
  <tr>
  <th><a class="num" href="javascript:" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >编号</a></th>
  <th><a href="javascript:" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >姓名</a></th>
  <th><a href="javascript:" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >性别</a></th>
  <th><a href="javascript:" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >总分</a></th>
  </tr>
  <tr>
  <td>1031</td>
  <td>李渊</td>
  <td>男</td>
  <td>654</td>
  </tr>
  <tr>
  <td>1021</td>
  <td>张扬</td>
  <td>男</td>
  <td>624</td>
  </tr>
  <tr>
  <td>1011</td>
  <td>吴敏</td>
  <td>女</td>
  <td>632</td>
  </tr>
  <tr>
  <td>1026</td>
  <td>李小明</td>
  <td>男</td>
  <td>610</td>
  </tr>
  <tr>
  <td>1016</td>
  <td>周谨</td>
  <td>女</td>
  <td>690</td>
  </tr>
  <tr>
  <td>1041</td>
  <td>谢小敏</td>
  <td>女</td>
  <td>632</td>
  </tr>
  <tr>
  <td>1072</td>
  <td>刘明明</td>
  <td>男</td>
  <td>633</td>
  </tr>
  <tr>
  <td>1063</td>
  <td>蒋忠公</td>
  <td>男</td>
  <td>675</td>
  </tr>
 </table>
 </body>

</html>

源码下载:jquerytableSortjs(jb51.net).rar

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • jquery tablesorter.js 支持中文表格排序改进

    代码: 仿一个网友的代码写的,不记得出自哪里了,改成可以支持中文排序,而且支持控件value的排序. 没办法,能力有限,只能... 复制代码 代码如下: //转换器,将列的字段类型转换为可以排序的类型:String,int,float function convert(sValue, sDataType) { switch(sDataType) { case "int": return parseInt(sValue); case "float": return p

  • jQuery表格排序组件-tablesorter使用示例

    一.引入文件 复制代码 代码如下: <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/jquery.tablesorter.js"></script> <!-- 引入以下样式则表头出现排序图标,同时引入图片 --> <

  • Jquery 数组操作大全个人总结

    jQuery的数组处理,便捷,功能齐全. 最近的项目中用到的比较多,深感实用,一步到位的封装了很多原生js数组不能企及的功能. 最近时间紧迫,今天抽了些时间回过头来看 jQuery中文文档 中对数组的介绍,顺便对jQuery数组做个总结.温故,知新. 强烈建议你打开DEMO演示后再看下面的详解: 点此查看DEMO 1. $.each(array, [callback]) 遍历[常用] 解释: 不同于例遍 jQuery 对象的 $().each() 方法,此方法可用于例遍任何对象(不仅仅是数组哦~

  • jquery遍历数组与筛选数组的方法

    grepgrep()方法用于数组元素过滤筛选 grep(array,callback,invert)array:待过滤数组;callback:处理数组中的每个元素,并过滤元素,该函数中包含两个参数,第一个是当前数组元素的值,一个是当前数组元素的下标,即元素索引值.此函数应返回一个布尔值.另外,此函数可设置为一个字符串,当设置为字符串时,将视为"lambda-form"(缩写形式?),其中 a 代表数组元素,i 代表元素索引值.如"a > 0"代表"f

  • 通过jquery-ui中的sortable来实现拖拽排序的简单实例

    1.引入文件 <script src="{sh::PUB}js/jquery-1.10.1.min.js"></script> <link rel="stylesheet" href="Public/css/jquery-ui.min.css"> <script src="{sh::PUB}js/jquery-ui.min.js"></script> 2.给元素附上s

  • jquery中的sortable排序之后的保存状态的解决方法

    当时也就从jquery的官方网站上抄了几句搞上去,后来发现用处不大,还挺慢.汗---以至于到今天早上也没搞清楚怎么样才能把排序后的结果保存起来,正好现在公司要做一个这样的功能,就又从新学习了下.首先,在jquery的官方demo(http://jqueryui.com/demos/)上找到了相似的代码.我所要的叫就是portlets(http://jqueryui.com/demos/sortable/portlets.html)这种效果.就像igoogle首页那样的.冒似很简单,把要引用的js

  • jQuery简单实现对数组去重及排序操作实例

    本文实例讲述了jQuery简单实现对数组去重及排序操作.分享给大家供大家参考,具体如下: 1. 去重: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>JQ去重</title> </head> <body> <script src="jquery-1.7.2.min

  • jQuery实现tag便签去重效果的方法

    本文实例讲述了jQuery实现tag便签去重效果的方法.分享给大家供大家参考.具体实现方法如下: html代码如下: 复制代码 代码如下: <head> <script type="text/javascript" src="js/jQuery.js"></script>  <!--jquery引用代码--> <script type="text/javascript" src="j

  • jquery中push()的用法(数组添加元素)

    push定义和用法 push() 方法可向数组的末尾添加一个或多个元素,并返回新的长度. 语法 arrayObject.push(newelement1,newelement2,....,newelementX) 参数 描述 newelement1 必需.要添加到数组的第一个元素. newelement2 可选.要添加到数组的第二个元素. newelementX 可选.可添加多个元素. 返回值 把指定的值添加到数组后的新长度. 说明 push() 方法可把它的参数顺序添加到 arrayObjec

  • jQuery利用sort对DOM元素进行排序操作

    前言 排序对于我们是再熟悉不过了,在绝大数应用程序中都会有这样一个场景:当我们从服务器端获取一个列表时,在界面上进行渲染,我们可以会依赖于某一个规则来进行排序,当然此时绝大多数会再次与服务器进行交互来进行重新渲染列表到客户端,这样做未尝不可,但是在有些情况下,我们既不需要利用框架也不需要重新生成列表到客户端,明明可以在客户端进行,达到我们的目的,为何要再一次发送请求到服务器呢?下面我们来看看. 话题 我们首先看看在w3c中js的sort方法. <script type="text/java

随机推荐