在标题下方显示点击标题的更多内容

时间:2015-07-02 18:10:06

标签: php jquery html wordpress click

我需要在wordpress中显示帖子的内容。基本上我需要在点击时显示div,但只显示当前帖子。我在页面上有标题和摘录,以显示所有帖子。我想显示仅点击当前标题帖子的内容。以下示例是我目前拥有的。

$(document).on('click', '.post-id', function() {
	$(myClass, ".post-content").show();
});
<div class="post-full">
<h2 class="post-id<?php //echo get_the_ID(); ?>"><?php the_title(); ?><div class="close">Close</div></h2>
<div class="post-excerpt"><h3><?php the_excerpt(); ?></h3></div>
<div class="post-content"><?php the_content(); ?></div>
</div>

1 个答案:

答案 0 :(得分:1)

如果我理解正确

$(document).on('click', '.post-id', function()
{
    var content = $(this).nextAll('.post-content');

    if (content.is(':visible'))
    {
        content.hide();
    }
    else
    {
        $('.post-content:visible').hide();

        content.show();
    }
});