$(function(){ /*导航下拉菜单*/ $('div.head ul.nav li').hover(function(){ $(this).children('div').show(); $(this).children('a').attr('class','hover'); },function(){ $(this).children('div').hide(); $(this).children('a').removeattr('class').attr('class',''); }) /*业务范围 */ $('div.top2lco').hide(); $('div.top2lco').first().show(); $('div.top2co .top2 ul.top2tl li').hover(function(){ $(this).addclass('hover'); $(this).siblings().removeclass('hover'); $('div.top2lco').eq($(this).index()).show().siblings('div.top2lco').hide(); }) })