2012年10月26日
摘要: var time = null;$("#menu").hover(function(){ clearTimeout(time); $("#show").show(); console.log("show"); },function(){ time = setTimeout(function(){ $("#show").hide(); console.log("hide"); },50); });$("#show").hover(function(){ clearTimeout 阅读全文
posted @ 2012-10-26 16:01 somesayss 阅读(7794) 评论(0) 推荐(2) 编辑