wordpress插件中的jquery冲突

时间:2012-11-10 06:55:34

标签: php javascript jquery ajax wordpress

我为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冲突,所以我要解决它

2 个答案:

答案 0 :(得分:1)

只需在头标记

之间将jquery添加到主题的header.php文件中
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

答案 1 :(得分: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>