$(function () { /*导航提示条*/ function barMove(em) { var barL = em.position().left; var barW = em.outerWidth(); $('.slide_bar').css({'left':barL,'width':barW}); } var oTiem = null; barMove($('.active_item')); $('.header .nav_item').hover( function () { var _this = $(this); if(_this.hasClass('nav_tel')){ return false; } barMove(_this); oTiem = setTimeout(function () { _this.find('.menu').fadeIn("show"); },200) }, function () { clearTimeout(oTiem); barMove($('.active_item')); $(this).find('.menu').fadeOut(); } ) })