function GetUrlRelativePath() { var url = document.location.toString(); var arrUrl = url.split("//"); var start = arrUrl[1].indexOf("/"); var relUrl = arrUrl[1].substring(start); //stop省略,截取从start开始到结尾的所有字符 if(relUrl.indexOf("?") != -1){ relUrl = relUrl.split("?")[0]; } return relUrl; } $("#main_nav a[href='"+GetUrlRelativePath()+"']").addClass('on'); $( function () { $(".pro .leftpro .menu li").eq(0).find(".nmenu").show(); $(".pro .leftpro .menu li").eq(1).find(".nmenu").show(); $(".pro .leftpro .menu li").click( function () { $(this).find(".nmenu").slideDown() $(this).siblings().find(".nmenu").slideUp() $(this).addClass("cur") $(this).siblings().removeClass("cur"); } ) } ); $('.pro .leftpro .menu li .nmenu > div').mouseenter(function(){ $(this).children('.submenu').show(); }); $('.pro .leftpro .menu li .nmenu > div').mouseleave(function(){ $(this).children('.submenu').hide(); }); $(document).ready(function(){ $(".suspend").mouseover(function() { $(this).stop(); $(this).animate({width: 160}, 400); }) $(".suspend").mouseout(function() { $(this).stop(); $(this).animate({width: 40}, 400); }); });