gpt4 book ai didi

javascript - 使用 jQuery 单击 anchor 时切换最近的内容

转载 作者:太空宇宙 更新时间:2023-11-03 23:58:18 25 4
gpt4 key购买 nike

我有这样的内容结构:

<a href="#" class="toggle_button">Click me.</a>
<p class="hidden_content">This content is toggleable.</p>

<a href="#" class="toggle_button">Click me.</a>
<p class="hidden_content">This is a different section.</p>

<a href="#" class="toggle_button">Click me.</a>
<p class="hidden_content">This section is also different.</p>

我已经发现了如何在一个部分中实现这一点,但是我怎样才能做到在我点击一个 toggle_button 时它只打开最近的 hidden_​​content 类。

最佳答案

$('a.toggle_button').click(function() {
$(this).next('p.hidden_content').toggle();
}

http://api.jquery.com/next/

关于javascript - 使用 jQuery 单击 anchor 时切换最近的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17862589/

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