0

次のように、コードのこのセクションで何が起きているのかわかりません。

$(document).ready(function(){
    $('#testimonialContent').load('http://www.1.co.uk/wp-content/themes/1/testimonialPull.php');
  $('#nextQu').click(function(){
        alert(".");
    return false;
  });
});

警告メッセージが表示されるはずのときに表示されません。私は構文エラーを犯したとは思いませんか?

HTML:

<?php
    require_once('../../../wp-blog-header.php');
    header('HTTP/1.1 200 OK');
?>
<br /><br /><br /><br /><br /><img id="quoteOne" src="http://www.1.co.uk/wp-content/themes/1/images/quote1.png">
    <span><?php
        query_posts(array(
            'cat' => 39,
            'order' => 'ASC', // ASC
            'orderby' => 'rand',
            'showposts' => 1,
            ));
        $wp_query->is_archive = true; $wp_query->is_home = false;
        if (have_posts()) : while (have_posts()) : the_post();
        the_content();
        endwhile; endif;


    ?>
    <span id="nextQu">NEXT QUOTE</span>
    </span>
4

1 に答える 1

4

委任を使用してみてください:

$('#testimonialContent').on('click','#nextQu',function(){
        alert(".");
    return false;
  });
于 2012-11-05T11:52:35.737 に答える