TypeError:$(...)。tablesorter不是仅在iPad上抛出的函数

时间:2016-01-10 07:30:17

标签: javascript jquery ipad safari tablesorter

我在尝试加载tablesorter时收到以下错误代码:

"TypeError: $(".tablesorter").tablesorter is not a function. (In '$(".tablesorter").tablesorter({sortList:[[0,1]]})','$(".tablesorter").tablesorter'is undefined)

在桌面浏览器上运行代码非常有效(Chrome,FF,IE),适用于Android手机。

这是一个小提琴(它确实适用于ipad):https://jsfiddle.net/cvuca2mx/

我在服务器上按以下顺序加载文件:

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.25.0/js/jquery.tablesorter.min.js"></script>
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/intro.js/1.1.1/introjs.min.css"/>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/intro.js/1.1.1/intro.min.js"></script>
<link rel="stylesheet" type="text/css" href="/commonUI/commonUI.css" />
<script src="/commonUI/commonJS.js"></script>

我已经验证我的文件只被加载一次,因为这是与其他人共同的问题。如果我直接将CDN的JS for tablesorter放入我的commonJS文件中,并删除对CDN的调用,那么iPad工作得很好。

有没有其他人在ipad上遇到过类似的问题,或者有任何建议?

1 个答案:

答案 0 :(得分:0)

jquery.tablesorter.js文件由供应商更新。

新类是“tablesorterPager”而不是“tablesorter”

更新为jquery.tablesorter.js

"(function($) { $.extend({ **tablesorterPager**: new function() { ......"

此致