1

我在我的脚本中使用它:

$.fn.dataTableExt.oSort['title-numeric-asc']  = function(a,b) {
    var x = a.match(/title="*(-?[0-9\.]+)/)[1];
    var y = b.match(/title="*(-?[0-9\.]+)/)[1];
    x = parseFloat( x );
    y = parseFloat( y );
    return ((x < y) ? -1 : ((x > y) ?  1 : 0));
};

datatableExt 来自:
http ://datatables.net/download/build/jquery.dataTables.js

有时我包含“jquery.dataTables.js”,有时我不包含。
所以如果包含数据表代码,我想添加这个插件。
我该如何检查?
是不是有点像(typeof fn.dataTableExt != 'undefined')

4

2 回答 2

4

我认为这很简单

if (!$.fn.dataTableExt) {
    alert('does not exist');
} else {
    alert('does exist');
}
于 2012-09-06T16:33:07.430 回答
1

与检查 JQuery 的 Google 存储库是否已加载相同的方式:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<script type="text/javascript">!window.jQuery && document.write('<script src="js/jquery-1.7.1.min.js"><\/script>')</script>

但它会是:

<script type="text/javascript">if (!$.fn.dataTableExt) { document.write('<script src="http://datatables.net/download/build/jquery.dataTables.js"><\/script>')}</script>
于 2012-09-06T16:40:12.823 回答