$(document).ready(function(){ $(".side_nav_3").hover(function() { $(this).find('span').stop().toggle(300) }); $('.back_top').click(function(){ $('body,html').animate({scrolltop:0},500) }); ///导航下拉 $('.g_nav01 table tr td').mouseover(function(){ $(this).find('.nav_tan').stop(true,true).slidedown(); $(this).children("a").addclass("cur"); }); $('.g_nav01 table tr td').mouseleave(function(){ $(this).find('.nav_tan').stop(true,true).slideup('fast'); $(this).children("a").removeclass("cur"); }); //搜索 $(".isearch span").click( function(){ $(".search01").toggle(); } ) });