0

当我单击 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;
}

小提琴:http: //jsfiddle.net/KZ3Ky/6/

4

1 回答 1

2

首先你需要在第二个上设置onClick功能div然后你可以再次=> DEMOfadeOutdiv

$(document).ready(function() {
 $("a.showinfo").click(function() {
    $("div.info").fadeOut();
    $(this).next("div.info").fadeIn();
     $("div.info").click(function(){
       $("div.info").css("display","none");
     });
  });
});
于 2013-06-11T10:03:38.733 回答