以下のフィドルは完全に機能しますが、空のテストドキュメントでこれを再作成しようとすると何も起こりません。私は間違って何をしていますか?テーブルソート関数がフィドル以外で動作しない
ここは私のフィドルです。 https://jsfiddle.net/1djad595/2/
これは上のフィドルの成功を再現することができない更新されたコードです。 。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="css/custom.css" />
</head>
<body>
<script>
$(document).ready(function()
{
$("#myTable").tablesorter();
}
);
</script>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.27.8/js/jquery.tablesorter.min.js">
</script>
<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>
</html>
[更新jsFiddle](https://jsfiddle.net/1djad595/2/) – gaetanoM
ありがとう、私はそれが私が見落とした何かばかげていることが分かっていた。それがソート可能であることを示す矢印をどのように取得するのですか? – brett
スタイルシートを追加するだけでこのリンクが役立ちます。 http://stackoverflow.com/questions/11763352/jquery-tablesorter-the-sorting-arrows-dont-show – Geeky