「Uncaught TypeError: Object [object Object] has no method 'tablesorter'」というメッセージが表示されます
さまざまなバージョンの jQuery を使用して、スクリプト リンクをスクリプト リストの上位に配置しようとしましたが、なぜこのエラーが引き続き発生するのかわかりません。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="stylesheets/main.css" type="text/css" rel="stylesheet" />
<link href="/third_party_js/tablefilter/v2_4/filtergrid.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="//ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="/third_party_js/jquery_tablesorter/jquery_tablesorter.js"></script>
<script type="text/javascript" src="/third_party_js/tablefilter/v2_4/tablefilter.js"></script>
...
<table class="tablesorter" id="mytable" cellspacing="6">
<thead>
<tr class="tr-head">
<th>Name</th>
<th>Description</th>
<th>Length</th>
<th>Priority</th>
</tr>
</thead>
<tbody>
表の残りの部分は次のとおりです。一番下で実行しているスクリプトは次のとおりです。
$(document).ready(function()
{
$("#mytable").tablesorter( {sortList: [[0,0], [1,0]]} );
}
);
ご覧のとおり、TableFilter も使用していますが、干渉する必要はないと思います。私は何が欠けていますか?