搜索不休,我一直在努力實現博客的可分類表,它適用於Chrome/Safari瀏覽器,但是當它的加載在Firefox它不工作後。排序表jQuery腳本本地工作在Firefox但不託管
我已經試過本地腳本在Firefox和它的作品。
我使用的tablesorter來自:http://tablesorter.com/docs/
我的頁面在這裏舉行:http://www.shellyinreallife.com/p/restaurants-nyc.html
腳本是在這裏:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
<script src="http://artknow.googlecode.com/svn-history/r14/trunk/Site/librarys/jquery.tablesorter.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(
function() {
$("#myTable").tablesorter({sortList: [[3,1], [4,0]]});
});
</script>
我試圖改變從$(document).ready
的功能$(document).load
,但沒有工作。也已將腳本移至表格所在的位置。
任何幫助將是偉大的!
謝謝!
Firefox的報道說,'類型錯誤:$(...)的tablesorter不是function'。這似乎與Disqus有衝突。 – BenM 2013-02-20 22:27:56
它適用於Chrome和Firefox ... – 2013-02-20 22:34:53
嘗試在頁腳中加載disqus。 – 2013-02-20 22:37:46