//设置变量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'); }