我在一个页面上有几个 div,其中隐藏了我想在单击 div 元素时显示的文本。如何使用 div 的类来做到这一点?
这是我的html:
<div id="post-<?php the_ID(); ?>" <?php post_class('team-member'); ?>>
<?php echo get_the_post_thumbnail($page->ID, array(441,293)); ?>
<div class="bio-button">BIO</div>
<h2><?php the_title(); ?></h2>
<h3><?php the_excerpt(); ?></h3>
<div class="team-text">
<p><?php the_content(); ?></p>
</div>
</div>
还有我的jQuery:
$('.bio-button').toggle(function () {
$('.team-text',this).show();
}, function () {
$('.team-text',this).hide();
return false;
});
再说一次,我将为 .team-member 提供多个 div,.team-text 被隐藏,并在单击 .bio-button 时显示。
我在我的 jquery 中做错了什么?