首页 > Web开发 > 详细

jquery 写的折叠菜单

时间:2016-08-16 23:39:56      阅读:179      评论:0      收藏:0      [点我收藏+]

技术分享

 

技术分享

 技术分享

 

 

<!-- 总栏 -->
<div style="width:180px;height:50px;background-color:#000;">
<button class="btn btn-primary btn-lg" id="btn_packinglist" >
单机折叠菜单
</button>
</div>
<!-- 总栏-->

<!-- 下拉列表拦 -->


<!-- 按钮栏 -->
<div class="item" style="width:180px;height:30px;display:none;background-color:red;">
<div style="width:30px;height:20px;background-color:#fff;"></div>
<div style="width:30px;height:20px;background-color:#fff; margin-left: 40px;margin-top: -20px"></div>
</div>
<!-- 按钮栏 -->
<!-- 子按钮 -->
<div class="sub_item" style="width:180px;height:30px;display:none;background-color:black;">
<div style="width:30px;height:20px;background-color:#fff;"></div>
</div>
<!-- 子按钮 -->
<!-- 按钮栏 -->
<div class="item" style="width:180px;height:30px;display:none;background-color:green;">
<div style="width:30px;height:20px;background-color:#fff;"></div>
</div>
<!-- 按钮栏 -->
<!-- 子按钮 -->
<div class="sub_item" style="width:180px;height:30px;display:none;background-color:black;">
<div style="width:30px;height:20px;background-color:#fff;"></div>
</div>
<!-- 子按钮 -->
<!-- 按钮栏 -->
<div class="item" style="width:180px;height:30px;display:none;background-color:blue;">
<div style="width:30px;height:20px;background-color:#fff;"></div>
</div>
<!-- 按钮栏 -->
<!-- 子按钮 -->
<div class="sub_item" style="width:180px;height:30px;display:none;background-color:black;">
<div style="width:30px;height:20px;background-color:#fff;"></div>
</div>
<!-- 子按钮 -->
<!-- 下拉列表拦 -->
<script type="text/javascript">
$("#btn_packinglist").click(function(){

$(".item").slideToggle("fast");
$(".sub_item").hide();
});
$(".item").click(function(){
$(this).next().slideToggle("fast");
$(".item").not(this).next().slideUp();
});

jquery 写的折叠菜单

原文:http://www.cnblogs.com/caer/p/5778087.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!