本文介绍了jQuery未在Wordpress中定义,但我的脚本已正确入队的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试将一个单独的javascript文件mobile-menu.js加载到我的Wordpress主题中.当我查看控制台时,它说:未定义jQuery".但是,我知道我已正确排队了脚本文件.有任何想法吗?
I am trying to load a separate javascript file mobile-menu.js to my Wordpress theme. When I look at the console, it says, "jQuery is not defined." However, I know that I enqueued my script files correctly. Any ideas?
HTML文件:
<a href="#" id="menu-icon"></a> <!--this line wasn't here originally-->
<div id="switchmenu"><!--switchmenu begin-->
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</div><!--switchmenu end-->
functions.php文件:
functions.php file:
function lapetitefrog_scripts() {
wp_enqueue_style( 'lapetitefrog-style', get_stylesheet_uri() );
wp_enqueue_script( 'lapetitefrog-mobile-menu', get_template_directory_uri() . '/js/mobile-menu.js', array(), '1.0', true );
}
add_action( 'wp_enqueue_scripts', 'lapetitefrog_scripts' );
mobile-menu.js文件:
mobile-menu.js file:
jQuery(document).ready(function($) {
$('#menu-icon').click(function() {
$('#switchmenu').slideToggle("fast");
});
});
推荐答案
在排队脚本之前添加wp_enqueue_script('jquery');
.
这篇关于jQuery未在Wordpress中定义,但我的脚本已正确入队的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!