// 全局变量
var timeoutJob;
$('td').hover(function (e) {
// 鼠标移入,设置延时方法
if (e.type == "mouseenter") {
timeoutJob = setTimeout(function () {
//
// 具体功能
//
}, 1000);
} else { // 鼠标移出,清理延时方法
clearTimeout(timeoutJob);
}
});
网友评论