您当前的位置: 首页 >  动画

暂无认证

  • 0浏览

    0关注

    95907博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

[JQ权威指南]动画表格排序插件TableSort

发布时间:2016-11-17 08:12:31 ,浏览量:0

转自:https://yq.aliyun.com/articles/20669 这里写图片描述

 <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:">编号a>th> <th><a href="javascript:">姓名a>th> <th><a href="javascript:">性别a>th> <th><a href="javascript:">总分a>th> tr> <tr> <td>1031td> <td>李渊td> <td>男td> <td>654td> tr> <tr> <td>1021td> <td>张扬td> <td>男td> <td>624td> tr> <tr> <td>1011td> <td>吴敏td> <td>女td> <td>632td> tr> <tr> <td>1026td> <td>李小明td> <td>男td> <td>610td> tr> <tr> <td>1016td> <td>周谨td> <td>女td> <td>690td> tr> <tr> <td>1041td> <td>谢小敏td> <td>女td> <td>632td> tr> <tr> <td>1072td> <td>刘明明td> <td>男td> <td>633td> tr> <tr> <td>1063td> <td>蒋忠公td> <td>男td> <td>675td> tr> table> body> html>
关注
打赏
1655516835
查看更多评论
立即登录/注册

微信扫码登录

0.4135s