$(document).ready(function () { //首页主导航模拟选中样式 $('.gn-list >li').hover( function () { $(this).addclass("active"); var current_li = $(this); if (!$(current_li).children('.dropdown').is(':visible') && $('.dropdown').find('a').length > 0) { $(current_li).find('.dropdown').slidedown(200); } }, function () { $(this).find('.dropdown').slideup(100); $(this).removeclass("active"); }); })