我有一個鏈接,顯示鼠標懸停div。 在鼠標移出後,我再次隱藏div。 但是,如果用戶從未將鼠標懸停在div上,那麼它將保持打開狀態,因此我需要在一定時間後隱藏div。 由於這些是2個元素(鏈接和div),我不認爲我可以使用.hover。我最好怎麼寫這個來隱藏.tooltip配置文件10秒後沒有鼠標懸停?如果沒有鼠標隱藏
$("#profile").mouseenter(function(){
var position = $(".tooltip-profile").offset();
$(".tooltip-profile").css({ position: "absolute", left: "720px", top: "-110px" });
$(".tooltip-profile").fadeIn(500);
});
$(".tooltip-profile").mouseleave(function(){
$(".tooltip-profile").fadeOut(500);
});
好的,但這會殺死我的mouseleave功能? – infatti