0

我为 jquery 网站制作插件我使用谷歌 jquery 我正在使用代码

/*add_action( 'init', array( $this, 'include_jquery' ) );

function include_jquery(){


                   wp_deregister_script('jquery');
                   wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"));
                   wp_enqueue_script('jquery');


            }*/

但它与我的头文件jquery的宽度冲突所以我要解决它

4

2 回答 2

1

只需在 head 标签之间将 jquery 添加到主题的 header.php 文件中

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
于 2012-11-10T07:08:48.060 回答
1

您将需要使用 jQuery 函数“noConflict”,它允许 jQuery 的多个版本/实例。

参考:http ://api.jquery.com/jQuery.noConflict/

编辑,尝试:

<script type='text/javascript'>
    jQuery.noConflict();
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
于 2012-11-10T07:13:39.503 回答