0

私のjQueryスクリプトがここにロードされない理由を誰か教えてください

<?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>
4

2 に答える 2

1
<?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>

幸運を!:)

于 2012-06-13T13:04:37.353 に答える
0

二重引用符が問題の原因であるかどうかわからない場合は、header.php ではなく、functions.php を介してフロント エンドのスクリプトをキューに入れることをお勧めします。そのようです;

if ( !is_admin() ) {
wp_enqueue_script('jquery');
}
于 2012-06-13T11:01:00.807 に答える