$(document).ready(function(){ ///首页导航下拉 $('.index_nav ul li').mouseover(function(){ $(this).find('.nav_tan').stop(true,true).slidedown(); $(this).children("a").addclass("cur"); }); $('.index_nav ul li').mouseleave(function(){ $(this).find('.nav_tan').stop(true,true).slideup('fast'); $(this).children("a").removeclass("cur"); }); ///导航下拉 $('.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(); } ) });