gpt4 book ai didi

javascript - 使用 Jquery 显示/隐藏两个 Div

转载 作者:行者123 更新时间:2023-12-02 18:07:14 25 4
gpt4 key购买 nike

我有两个 div:

         <a href="#" class="component_expand"></a>
<div class="component_wrapper">

</div>

<a href="#" class="component_expand"></a>
<div class="component_wrapper">

</div>

Jquery 代码:

<script type="text/javascript">

$(document).ready(function(){

$(".component_wrapper").hide();
$(".component_expand").show();

$('.component_expand').click(function(){
$(".component_wrapper").slideToggle();
});

});

</script>

每次单击“组件展开”时,我都会尝试打开一个 DIV。现在开两个我很高兴他们能帮助我

最佳答案

您需要使选择器具体化,请使用 next .

$(this).next().slideToggle();

尝试:

 $(document).ready(function(){
$(".component_wrapper").hide(); //You can do this using css rule itself
$(".component_expand").show().click(function(){
$(this).next().slideToggle();
});
});

<强> Demo

关于javascript - 使用 Jquery 显示/隐藏两个 Div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19988907/

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