有人可以帮我解决这个问题吗?我只想在为每个点击“showfaqanswer”时显示“faqanswer”。我看不出 PHP 和 jQuery 代码有什么问题。谢谢您的帮助!
<?php query_posts("cat=17&posts_per_page=7&offset=7"); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<p>
<a href="#" id="showfaqanswer"><?php the_title(); ?></a><br />
</p>
<div id="faqanswer"><?php the_content(); ?></div>
<?php endwhile; ?>
jQuery(document).ready(function() {
$('#showfaqanswer').click(function(){
$('#faqanswer').nextUntil('#showfaqanswer').show();
});
});