http://www.cnblogs.com/Dtscal/p/acv.html
if(nowUrl == ctx+"/center/personal/index.xhtml" || nowUrl == ctx+"/center/school/index.xhtml" || nowUrl == ctx+"/center/company/index.xhtml" ){ //首页高亮 $("#indexMenu").addClass("hover1"); }else{ $("a").each(function(){ var getUrl = $(this).attr("href"); if(getUrl == nowUrl ){ var menuId= $(this).attr("data-fatherId"); if(menuId){ $("#"+menuId).addClass("hover1"); return false; } } }) }
var urlstr = location.href; //获取浏览器的url var urlstatus=false; //标记 //遍历导航div $("#menu a").each(function () { //判断导航里面的rel和url地址是否相等 if ((urlstr + ‘/‘).indexOf($(this).attr(‘rel‘)) > -1&&$(this).attr(‘rel‘)!=‘‘) { $(this).addClass(‘cur‘); urlstatus = true; } else { $(this).removeClass(‘cur‘); } }); //当前样式保持 if (!urlstatus) {$("#menu a").eq(0).addClass(‘cur‘); }
明天来完善
时间: 2024-10-26 17:52:03