gpt4 book ai didi

jquery - 隐藏两个 DIV 并在点击时切换第三个,然后反转

转载 作者:太空宇宙 更新时间:2023-11-04 15:36:11 25 4
gpt4 key购买 nike

单击时,我的函数隐藏前两个 DIV 并切换第三个 DIV。这是工作。当我再次点击同一个链接时,该功能切换回第三个 DIV,这也有效。但是之前隐藏的两个 DIV 现在仍然隐藏,而它们应该是可见的。

<div>
<div id="one"></div>
<div id="two"></div>
<div id="three"></div> -->CSS style is hidden
</div>
$(document).ready(function(){
$("#three").hide();
$(".show_hide").show(); --> this shows my click link

$('.show_hide').click(function(){
$("#three").slideToggle().load('testpage.php');
$("#one").hide();
$("#two").hide();
})
});

最佳答案

改变这个...

$("#one").hide();
$("#two").hide();

对于这个...

$("#one").toggle();
$("#two").toggle();

或者这个...

$("#one,#two").toggle();

或者这个...

$(this).siblings().toggle();

关于jquery - 隐藏两个 DIV 并在点击时切换第三个,然后反转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8579722/

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