使用jQuery UI 实现表格排序

<!DOCTYPE html><html><head>    <meta charset="utf-8">    <title>表格排序</title>    <link rel="stylesheet" href="jquery-ui-1.12.0/jquery-ui.css"></head>

<body><table id="myTable" class="tablesorter">    <thead>    <tr>        <th>Last Name</th>        <th>First Name</th>        <th>Email</th>        <th>Due</th>        <th>Web Site</th>    </tr>    </thead>    <tbody>    <tr>        <td>Smith</td>        <td>John</td>        <td>[email protected]</td>        <td>$50.00</td>        <td>http://www.jsmith.com</td>    </tr>    <tr>        <td>Bach</td>        <td>Frank</td>        <td>[email protected]</td>        <td>$50.00</td>        <td>http://www.frank.com</td>    </tr>    <tr>        <td>Doe</td>        <td>Jason</td>        <td>[email protected]</td>        <td>$100.00</td>        <td>http://www.jdoe.com</td>    </tr>    <tr>        <td>Conway</td>        <td>Tim</td>        <td>[email protected]</td>        <td>$50.00</td>        <td>http://www.timconway.com</td>    </tr>    </tbody></table>

</body><script src="jquery-1.12.4.min.js"></script><script src="jquery-ui-1.12.0/jquery.tablesorter.js"></script>

<script type="text/javascript">    $(document).ready(function(){        $("#myTable").tablesorter();    });

</script></html>
时间: 2024-12-28 16:14:45

使用jQuery UI 实现表格排序的相关文章

jquery ui选中表格多行数据

<script src="../public/js/jquery-1.8.3.js"></script> <script src="../public/js/jquery-ui-1.10.4.custom.js"></script> <script src="../public/js/jquery-ui.js"></script> <link rel="sty

排序插件jquery.ui.sortable

<link href="${base}/resources/sort/jquery.ui.all.css" rel="stylesheet"     type="text/css" /> <script type="text/javascript" src="${base}/page/js/jquery.js"></script> <script type=&quo

jquery 表格排序,实时搜索表格内容

jquery 表格排序,实时搜索表格内容 演示 XML/HTML Code <table class="table-sort"> <thead> <tr> <th class="table-sort">First Name</th> <th class="table-sort">Last Name</th> <th class="table-sor

使用jquery的tablesorter插件进行表格排序

今天在学习bootstrap的时候,突然看见tablesorter这个东东了,立马百度了一下,发现了这个东东.. 下面说一下今天我在项目中看见前辈们用的表格排序 tablesorter的官方网站:http://tablesorter.com/docs/ 使用方法:1.下载tablesorter http://tablesorter.com/jquery.tablesorter.zip 2.解压文件,将jquery和jquery.tablesorter.min.js导入到项目文件中 3.修改htm

jQuery表格排序组件-tablesorter

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

非常好用的jQuery表格排序插件

非常好用的 jQuery表格排序插件 https://mottie.github.io/tablesorter/docs/ CDN https://www.bootcdn.cn/jquery.tablesorter/ http://www.jq22.com/jquery-info7356 原文地址:https://www.cnblogs.com/nanahome/p/10585728.html

jquery ui中文说明(使用方法)(转)

在网上找了圈,分享给大家 jquery ui是jquery官方推出的配合jquery使用的用户界面组件集合!包含了许多的界面操作功能,如我们常用的表格排序,拖拽,TAB选项卡,滚动条,相册浏览,日历控件,对话框等JS插件~~可以很方便的开发用户界面上的功能,使得您的开发工作事半功倍~~不用写繁琐的JS代码~下载地址:http://ui.jquery.com/download 下载后会发现里面有很多的JS文件,也有DOME,您可以一一演示,现在,我介绍一些常用的UI库的使用 基本的鼠标互动: 拖拽

【转】推荐10款最热门jQuery UI框架

推荐10款最热门jQuery UI框架 原创 在进行Web开发时,并非所有的库都适合你的项目,但你仍需要收藏一些Web UI设计相关的库或框架,以在你需要的时候,加快你的开发效率.本文为你推荐10款非常优秀的基于JQuery的Web UI设计框架 1.国产jQuery UI框架 (jUI) DWZ DWZ富客户端框架(jQuery RIA framework), 是中国人自己开发的基于jQuery实现的Ajax RIA开源框架. 设计目标是简单实用,快速开发,降低ajax开发成本. 欢迎大家提出

Jquery UI sortable

所有的事件回调函数都有两个参数:event和ui,浏览器自有event对象,和经过封装的ui对象 ui.helper - 表示sortable元素的JQuery对象,通常是当前元素的克隆对象 ui.position - 表示相对当前对象,鼠标的坐标值对象{top,left} ui.offset - 表示相对于当前页面,鼠标的坐标值对象{top,left} ui.item - 表示当前拖拽的元素 ui.placeholder - 占位符(如果有定义的话) ui.sender - 当前拖拽元素的所属