码迷,mamicode.com
首页 > Web开发 > 详细

网站导航菜单 远择一个栏目跳转后,保持栏目为选中状态

时间:2016-05-01 12:20:19      阅读:815      评论:0      收藏:0      [点我收藏+]

标签:

html

<div id="navMenu">  
     <ul>  
         <li><a href="/web/home" >首页</a></li>  
         <li><a href="/web/survey" >问卷调查</a></li>  
    </ul>  
</div>

js实现

/**
 * 导航菜单
 */
$(document).ready(function(){  
    $(‘#navMenu li a‘).each(function(){  
        if($($(this))[0].href==String(window.location))  
            $(this).parent().addClass(‘hover‘);  
    });  
})

 

网站导航菜单 远择一个栏目跳转后,保持栏目为选中状态

标签:

原文地址:http://www.cnblogs.com/shell-blog/p/5450221.html

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