gpt4 book ai didi

javascript - 用js再次隐藏内容

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

当我点击 div.info 时,它需要再次隐藏/显示:无。我怎样才能做到这一点?

html

<div class="floated">
<a href="#" class="showinfo">link 1</a>
<div class="info">onclick this div hide it again</div>
</div>

js

$(document).ready(function() {
$("a.showinfo").click(function() {
$("div.info").fadeOut();
$(this).next("div.info").fadeIn();
});
});

CSS

div.info {
display: none;
}
div.floated {
float: left; position:relative; height:100px; width:100px; background:#f00;
}
div.info{
position:absolute; background:#ccc; width:100px; height:100px; top:0;
}

fiddle :http://jsfiddle.net/KZ3Ky/6/

最佳答案

首先你需要在第二个div上设置onClick函数,然后你就可以fadeOutdiv再次=> <强> DEMO

$(document).ready(function() {
$("a.showinfo").click(function() {
$("div.info").fadeOut();
$(this).next("div.info").fadeIn();
$("div.info").click(function(){
$("div.info").css("display","none");
});
});
});

关于javascript - 用js再次隐藏内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17041328/

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