$(document).ready(function() { // 导航 $(".nav ul li").hover( function() { $(this).children('').next().stop(true, true).slidedown("fast"); }, function() { $(this).children('').next().stop(true, true).slideup("fast"); } ); // 搜索 $(".sobox .tit").click(function() { $(this).toggleclass('on'); $(this).siblings('.so').slidetoggle('fast'); if ($(this).hasclass("on")) { $(".header").addclass('on'); } else { $(".header").removeclass('on'); } }) });