我在#article
中有一个单独的页面,比如5个帖子。以下是用于切换hide / show:
$(".click-show-more").click(function () {
if($(".content").hasClass("show-more")) {
$(this).text("(Show Less)");
} else {
$(this).text("(Show More)");
}
$(".content").toggleClass("show-more");
});
HTML
结构是:
<div class="article">
<div class="content show-more">Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here.
Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here. Some text here.
</div>
<div class="click-show-more">(Show More)</div>
</div>
现在,我有上述结构,在单个页面上有5-6次,每当我点击Show More
时,所有5-6个帖子都会展开。
如何修改我的代码以仅扩展该特定帖子?
答案 0 :(得分:1)
更改此行
$(".content").hasClass("show-more")
到
$(this).closest('.article').find('.content').hasClass("show-more")
您的点击只会影响特定文章的content
。因此,请使用this
上下文。
也是这一行
$(".content").toggleClass("show-more");
应该是
$(this).closest('.article').find('.content').toggle();
除非已定义.show-more { display: none }
。
<强>代码强>
$(".click-show-more").click(function () {
var $closestContent = $(this).closest('.article').find('.content');
if($closestContent.hasClass("show-more")) {
$(this).text("(Show Less)");
} else {
$(this).text("(Show More)");
}
$closestContent.toggleClass('show-more');
});
<强> Check Fiddle 强>
答案 1 :(得分:0)
您需要找到同一content
div中的div。
article
的任何div。
所以它看起来像这样:
$(".click-show-more").click(function () {
var content = $(this).closest('.article').find('.content');
if(content.hasClass("show-more")) {
$(this).text("(Show Less)");
} else {
$(this).text("(Show More)");
}
content.toggleClass("show-more");
});
实际发生的是我们正在点击被点击的div:
$(this)
查找具有article
类的最近父级:
$(this).closest('.article')
然后找到article
div中具有content
类的任何孩子:
$(this).closest('.article').find('.content')