我的插件 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' );
?>