0

我对 javascript 基础有疑问,如何仅切换翻转类旁边的面板?不是一键完成,而是每个面板分开。

编辑器上的相同代码:http: //jsfiddle.net/GaXPG/

<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script> 
$(document).ready(function(){
  $(".flip").click(function(){
    $(".panel").slideToggle("slow");
  });
});
</script>

<style type="text/css"> 
.panel,.flip
{
padding:5px;
text-align:center;
background-color:#e5eecc;
border:solid 1px #c3c3c3;
}
.panel
{
padding:50px;
display:none;
}
</style>
</head>
<body>

<div class="flip">Click to slide the panel down or up</div>
<div class="panel">Hello world!</div>
<div class="flip">Click to slide the panel down or up</div>
<div class="panel">Hello world!</div>
<div class="flip">Click to slide the panel down or up</div>
<div class="panel">Hello world!</div>
<div class="flip">Click to slide the panel down or up</div>
<div class="panel">Hello world!</div>

</body>
</html>
4

1 回答 1

6

您可以在您的情况下使用.next()来选择单击部分旁边的 div 面板。

$(document).ready(function () {
    $(".flip").click(function () {
        $(this).next(".panel").slideToggle("slow");
    });
});

如果要向上滑动其他面板并将面板切换到当前单击的部分。这也会有所帮助。

  $('.panel') //Get all panels
       .not($(this).next(".panel") //But not the one next to this
       .slideToggle("slow")) //Toggle this panel
       .slideUp("slow"); //using chaining still get back the remaining panels to slideUp

小提琴

看 。不是()

于 2013-06-11T01:13:47.780 回答