码迷,mamicode.com
首页 > 其他好文 > 详细

amazeui折叠面板智能化展开

时间:2016-12-12 23:25:44      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:cti   展开   折叠面板   gets   ring   bre   active   匹配   lin   

2016年12月12日 21:05:18 星期一

场景: 我拿这个组件用作管理后台的侧边栏

效果: 根据当前访问的url不同, 展开不同的面板

amazeui折叠面板

js代码:

 1 <script type="application/javascript">
 2     var nowUrl = ‘http://xxxx‘;
 3     var dls =document.getElementById("sidebar").getElementsByTagName("dl"); //获取所有面板
 4     for (var i = 0; i < dls.length; i++) {
 5         var links = dls[i].getElementsByTagName("a"); //获取每个面板中的a标签
 6 
 7         for (var j=0; j<links.length; j++) {
 8             if (links[j].href == nowUrl.substring(0, nowUrl.length-1)) {
 9                 dls[i].setAttribute(‘class‘, ‘am-accordion-item am-active‘);
10                 var dds = dls[i].getElementsByTagName("dd");
11                 dds[0].setAttribute(‘class‘, ‘am-accordion-bd am-collapse am-in‘);
12                 break; //如果匹配到, 则跳出整个面板(dl)
13             } else {
14                 //把其它的面板(dl)都收起来
15                 dls[i].setAttribute(‘class‘, ‘am-accordion-item‘);
16                 var dds = dls[i].getElementsByTagName("dd");
17                 dds[0].setAttribute(‘class‘, ‘am-accordion-bd am-collapse‘);
18             }
19         }
20     }
21 
22 </script>

 

amazeui折叠面板智能化展开

标签:cti   展开   折叠面板   gets   ring   bre   active   匹配   lin   

原文地址:http://www.cnblogs.com/iLoveMyD/p/6166018.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!