任何人都可以说明为什么我的jQuery脚本没有加载here
<?php wp_enqueue_script("jquery"); ?>
<?php wp_head(); ?>
<script src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/slides.jquery.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/my-js-file.js"></script>
<script>
$(document).ready(function() {
$('#slides').slides({
preload: true,
preloadImage: 'img/loading.gif',
play: 5000,
pause: 2500,
hoverPause: true
});
});
</script>
</head>
答案 0 :(得分:0)
不确定双引号是否是造成问题的原因,最好通过functions.php而不是header.php将前端的脚本排入队列。像这样;
if ( !is_admin() ) {
wp_enqueue_script('jquery');
}
答案 1 :(得分:0)
<?php
function my_scripts_method() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
add_action('wp_enqueue_scripts', 'my_scripts_method');
?>
或者只是使用jquery.com的最新版本
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
祝你好运! :)