gpt4 book ai didi

javascript - 显示隐藏最近单击的元素

转载 作者:行者123 更新时间:2023-11-28 20:30:37 24 4
gpt4 key购买 nike

http://jsfiddle.net/KevinOrin/xycCx/1/

jQuery('.happening-main-text .readmore').click(function() {                  
jQuery('.divmore').toggle('slow');
return false;
});

我试图让每个链接仅显示/隐藏单击的链接。我该如何修改 JS 来做到这一点。我试过('.happening-main-text').closest('divmore')但这也不起作用。

<div class="happening-main-text">
<p>part of text goes here part of text <a href="#" class="readmore">show/hide</a>

</p>
<div class="divmore">
<p>more test from hidden1</p>
</div>
</div>
<div class="happening-main-text">
<p>part of text goes here part of text <a href="#" class="readmore">show/hide</a>

</p>
<div class="divmore">
<p>more test from hidden</p>
</div>
</div>
<div class="happening-main-text">
<p>part of text goes here part of text <a href="#" class="readmore">show/hide</a>

</p>
<div class="divmore">
<p>more test from hidden2</p>
</div>
</div>

最佳答案

如果您保留当前的 ​​HTML 格式,则以下代码应该可以工作

jQuery('.happening-main-text .readmore').click(function() {                  
jQuery(this).parent().next().toggle('slow');
return false;
});

关于javascript - 显示隐藏最近单击的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16492732/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com