-2

我的插件 tablesorter 有问题,显然我的系统没有识别功能 coo 存在,不知道它是否可能与其他 javascript 冲突(我正在更改 wordpress 插件)。

下面是我的代码:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="jquery.tablesorter.js"></script>
<script type="text/javascript">
(function($) {
    $('table').tablesorter();
})(jQuery);
</script>

我改变了调用 js 文件的方式

<?php
    wp_register_script( 'jquery.tablesorter.js', get_bloginfo('template_url').'/js/jquery.tablesorter.js' );
    wp_enqueue_script( 'jquery.tablesorter.js' );
?>
4

1 回答 1

0

问题是提供下载文件的站点提供了一个与插件同名的插件,只是让我感到困惑并下载了错误的文件。

于 2013-05-16T14:46:41.683 回答