我收到“未捕获的类型错误:对象 [对象对象] 没有方法 '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,但我认为这不应该干扰。我错过了什么?