我正在使用 Hover indent 插件,它只有一个功能来结合鼠标悬停和鼠标离开
代码1:
$("#tab").hoverIntent({
over: show,
timeout: 20,
out: hide
});
function show(){
$(".part").show();
}
function hide(){
$(".part").hide();
}
需要为.part编写鼠标离开功能,所以这样制作
代码2:
$("#tab").hoverIntent({
over: show,
timeout: 20,
out: hide
});
function show(){
$(".part").show();
}
$(".part").hoverIntent({
over: show,
timeout: 20,
out: hide
});
function hide(){
$(".part").show();
}
但似乎错误......如何解决这个问题?