使用jQuery UI 实现表格排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用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>

以上是关于使用jQuery UI 实现表格排序的主要内容,如果未能解决你的问题,请参考以下文章

使用带有 HTML 表格的 jQuery UI 可排序

jquery.ui 可使用表和 item:tr 排序,占位符困难

jQuery UI 将可排序列表保存到 PHP 数组

使用可排序的 jQuery UI 对多个表行进行排序

jQuery表格排序

jQuery插件 tablesorter 表格排序 使用说明