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