我让jQuery排队wp_enqueue_script( \'jquery\' );
(我明白了
<script type=\'text/javascript\' src=\'http://localhost/wp/wp-includes/js/jquery/jquery.js?ver=1.10.2\'></script>
<script type=\'text/javascript\' src=\'http://localhost/wp/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1\'></script>
在生成的html页面中)
现在,我正在尝试使用:
$(document).ready(function() {
$(\'#showmenu\').click(function() {
$(\'.menu\').slideToggle("fast");
});
});
只有手动添加jQuery引用时,它才起作用(
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
)
我错过什么了吗?