哪位高手帮忙解析一下这段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'); } 展开
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'); } 展开
1个回答
展开全部
//设置变量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'); }
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询