jquery实现后台系统左侧菜单的点击展开/收缩二级菜单效果
2021-07-01 00:13
标签:row href item icon 展开 css htm .com ack html: js: css就不贴了,用jquery实现这种竖直手风琴菜单真的容易好多。 jquery实现后台系统左侧菜单的点击展开/收缩二级菜单效果 标签:row href item icon 展开 css htm .com ack 原文地址:http://www.cnblogs.com/iriliguo/p/7134393.htmlclass="menu">
class="content">
$(".title .item1").click(function(){
$(this).next(".content").slideToggle();//实现二级菜单的展开收缩功能
$(this).find("span").toggleClass("glyphicon glyphicon-chevron-down");//实现菜单点击时图标的转换效果
$(this).find("span").toggleClass("glyphicon glyphicon-chevron-right");
})
文章标题:jquery实现后台系统左侧菜单的点击展开/收缩二级菜单效果
文章链接:http://soscw.com/index.php/essay/100073.html