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