将指向当前页面的带有href的链接设置为活动链接(如果在subnav中,则将其父级设置为活动链接)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将指向当前页面的带有href的链接设置为活动链接(如果在subnav中,则将其父级设置为活动链接)相关的知识,希望对你有一定的参考价值。
look through the list items in your main nav and based on href of anchor tags this will set the top level link to have an 'active' class.
$(document).ready(function(){ $(".sf-menu li").children("a").each(function() { if(window.location.href == $(this).attr('href')){ if($(this).parent().hasClass('main_link')){ $(this).addClass('active'); }else{ var topLink = $(this).parents('.main_link'); topLink.find('a').first().addClass('active') } } }); }); </script>
以上是关于将指向当前页面的带有href的链接设置为活动链接(如果在subnav中,则将其父级设置为活动链接)的主要内容,如果未能解决你的问题,请参考以下文章