哪位高手帮忙解析一下这段js代码,弄不明白啊,也就是说每行代码大概都是什么意思啊

//导航varurlstr=location.href;//alert((urlstr+'/').indexOf($(this).attr('href')));varur... //导航
var urlstr = location.href;
//alert((urlstr + '/').indexOf($(this).attr('href')));
var urlstatus=false;
$("#nav_top_top a").each(function () {
if ((urlstr + '/').indexOf($(this).attr('href')) > -1&&$(this).attr('href')!='') {
$(this).addClass('active_nav_top'); urlstatus = true;
} else {
$(this).removeClass('active_nav_top');
}
});
if (!urlstatus) {$("#nav_top a").eq(0).addClass('active_nav_top'); }
展开
 我来答
徐_赫
推荐于2018-05-07 · TA获得超过382个赞
知道小有建树答主
回答量:61
采纳率:0%
帮助的人:47.8万
展开全部
//设置变量urlstr为当前地址
var urlstr = location.href;
//设置变量urlstatus为false
   var urlstatus=false;
//循环遍历HTML DOM里id为nav_top_top 下边所有的a标签
   $("#nav_top_top a").each(function () {
//如果当前ur与a标签href属性相等并且当前href属性不为空      
if ((urlstr + '/').indexOf($(this).attr('href')) > -1&&$(this).attr('href')!='') {
//为当前a标签添加active_nav_top样式,设置urlstatus变量为true
       $(this).addClass('active_nav_top'); urlstatus = true;      } else {
//否则为当前a标签移除active_nav_top样式
       $(this).removeClass('active_nav_top');      }    });
//如果urlstatus为false 为html dom中id为nav_top 下的第一个a标签添加active_nav_top样式
   if (!urlstatus) {$("#nav_top a").eq(0).addClass('active_nav_top'); }
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式