gpt4 book ai didi

javascript - 影响当前外部元素中的另一个元素

转载 作者:行者123 更新时间:2023-11-28 16:19:07 25 4
gpt4 key购买 nike

<div class="test">
<button>Example</button>
<div class="example" style="display:none;">Blah</div>
</div>

<div class="test">
<button>Example</button>
<div class="example" style="display:none;">Another</div>
</div>

当单击 button 时,我希望 .example.show,但仅限于 .example在当前的 .test 中。

最佳答案

另一种适用于您的特定 HTML 的方法:

$('button').click(function(){
$(this).next('.example').show();
});

关于javascript - 影响当前外部元素中的另一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10369426/

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