$(document).ready(function(){ //当前页 var bodyid = $('body').attr('id'); if (bodyid){ var re = /[a-za-z]/g; var id = parseint(bodyid.replace(re, '')); $('li.mainlevel').eq(id).addclass("active").attr({'id':'currpage','title':''}); }; //自适应宽度 鼠标事件 var allliwidth=0; $("li.mainlevel").each(function(i){ allliwidth += $(this).innerwidth(); $(this).hover(function(){ $('#currpage').removeclass('active'); $(this).addclass('active').children('p').stop(true,true).slidedown('fast'); },function(){ $(this).removeclass('active').children('p').stop(true,true).slideup('fast'); $('#currpage').addclass('active'); }) }); var paddingwidth=parseint(($('#menu').width()-allliwidth)/$('li.mainlevel').size()); $('li.mainlevel').each(function(){ $(this).css({'width':$(this).width()+paddingwidth+'px'}); }); /*内页banner--模糊背景*/ if($('#subbanner').length>0 && $('#subbanner').find('img').length>0){ var imgsrc = $('#subbanner').find('img:first').attr('src'); if($.browser.msie){ $('#sub_banner').append('
') }else{ $('#sub_banner').append('
') } } }); /*左分类*/ function initmenu() { $('.list p').hide(); //$('.listul ul:first').show(); $('.list li a').click( function() { var checkelement = $(this).next(); if((checkelement.is('p')) && (checkelement.is(':visible'))) { return false; } if((checkelement.is('p')) && (!checkelement.is(':visible'))) { $(this).parent('li').addclass('on').siblings('li').removeclass('on'); $('.list p:visible').slideup('normal'); checkelement.slidedown('normal'); return false; } } ); } $(document).ready(function() {initmenu();});