gpt4 book ai didi

javascript - jQuery .click 未被识别

转载 作者:行者123 更新时间:2023-11-28 16:10:08 25 4
gpt4 key购买 nike

我无法弄清楚这部分代码是怎么回事,如下所示:

$(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>

最佳答案

尝试使用委托(delegate):

$('#testimonialContent').on('click','#nextQu',function(){
alert(".");
return false;
});

关于javascript - jQuery .click 未被识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13231531/

25 4 0
文章推荐: ios - 为任何宽度类大小设置分段控制字体
文章推荐: css - 在 SASS 中使用 "&"
文章推荐: html - 无法使用 CSS 设置 iframe 的样式
文章推荐: javascript - 使用 jQuery 更新
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com