//主菜单 $(document).ready(function(){ //当前页 var bodyid = $('body').attr('id'); if (bodyid){ //var id=parseint(bodyid.substr(bodyid.length-1,1)); var re = /[a-za-z]/g; var id = parseint(bodyid.replace(re, '')); $('li.mainlevel').eq(id).attr('id','currpage'); $('li.mainlevel').children('a').eq(id).addclass("currpage"); //alert(id); }; //自适应导航栏宽度 var allliwidth=0; $("li.mainlevel").each(function(){ allliwidth += $(this).width(); }); var paddingwidth=parseint(($('#menu').width()-allliwidth)/$('li.mainlevel').size()); //$('li.mainlevel').children('a').animate({'width':paddingwidth+'px'}); $('li.mainlevel').each(function(){ $(this).animate({'width':$(this).width()+paddingwidth+'px'}); }); $('li.mainlevel').hover(function(){ $(this).children('ul').slidedown('fast'); $(this).siblings('#currpage').children('a').removeclass('currpage'); $(this).children('a').addclass('hover'); }, function(){ $(this).find('ul').slideup("fast"); $(this).children('a').removeclass('hover'); $(this).siblings('#currpage').children('a').addclass('currpage'); }); });