$(function(){ var isexist = $(".left-nav .active").size(); $(".left-nav li a.nav").each(function(index){ $(this).click(function(){ if($(".subnav").eq(index).find("a").size() ==0 || $(this).text().indexof('服务百科')>-1){ location.href = $(this).data("href"); return false; } $(".subnav").slideup(1000).eq(index).stop().slidedown(); }); if(!isexist){ var curhref = location.href; controller = curhref.replace("http://" + document.domain,''); var targeturl = $(this).data("href") ? $(this).data("href") : $(this).attr("href"); if(targeturl.indexof(controller) > -1){ $(this).addclass("active"); isexist = 1; } } }); });