0
這是真正基本的表排序代碼... 這是否適合你?我不明白爲什麼它不能在我的機器上運行(Chrome或IE)。 我把它從Tablesorter example not working ,但我確實關閉了我的「腳本」標籤。jquery基本表排序器不工作
<head>
<title>Test</title>
<script src="http://tablesorter.com/jquery-latest.js" type="text/javascript"></script>
<script src="http://tablesorter.com/jquery.tablesorter.min.js" type="text/javascript">
</script>
<script type="text/javascript">
$(document).ready(function() {
$("#tablesorter-demo").tablesorter();
});
</script>
</head>
<body>
<table id="tablesorter-demo" class="tablesorter" border="2" cellpadding="0" cellspacing="1">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Age</th>
<th>Total</th>
<th>Discount</th>
<th>Difference</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr>
<td>Peter</td>
<td>Parker</td>
<td>28</td>
<td>$9.99</td>
<td>20.9%</td>
<td>+12.1</td>
<td>Jul 6, 2006 8:14 AM</td>
</tr>
<tr>
<td>John</td>
<td>Hood</td>
<td>33</td>
<td>$19.99</td>
<td>25%</td>
<td>+12</td>
<td>Dec 10, 2002 5:14 AM</td>
</tr>
<tr>
<td>Clark</td>
<td>Kent</td>
<td>18</td>
<td>$15.89</td>
<td>44%</td>
<td>-26</td>
<td>Jan 12, 2003 11:14 AM</td>
</tr>
</tbody>
</table>
</body>
確定這是固定不變的http://tablesorter.com/jquery.tablesorter.min.js 發回404錯誤-_- – user2567674
如果你有答案...請upvote答案 –
網址下載表分類插件http://tablesorter.com/docs/#Download –