如何在脚本中添加计时器?我希望“mouseenter”功能在启动前等待 1 秒。
$(".products_grid li").mouseenter(function(){
var $activeImage = $(this).find("img").attr("src");
var $imgZoom = '<div class="imgzoom"><img src="'+$activeImage+'" width="" height=""></div>';
$($imgZoom).hide().appendTo(this).fadeIn();
}).mouseleave(function(){
$("div.imgzoom").fadeOut().remove();
})