日期:2014-05-16 浏览次数:20471 次
jQuery(function(){
jQuery('#webmenu li').hover(
function(){
//鼠放悬浮其上时,延迟一秒显示
var _that=jQuery(this);
setTimeout(function(){
_that.children('ul').stop(true,true).show('normal');
},1000);
},function(){
//鼠放离开后,延迟一秒隐藏
var _that=jQuery(this);
setTimeout(function(){
_that.children('ul').stop(true,true).hide('slow');
},1000);
}
);
});