1. 程式人生 > >下拉選單,防滑鼠反覆觸發

下拉選單,防滑鼠反覆觸發

$(function(){
var timeId = null;
$('.thisMan').mouseenter(function(){
var _this = $(this);
timeId = setTimeout(function(){
_this.find('.showcotent').slideDown(100);
},300);
}).mouseleave(function(){
clearTimeout(timeId);
$(this).find('.showcotent').slideUp(100);
})
})