gpt4 book ai didi

jquery - 焦点对准时工具提示淡出

转载 作者:行者123 更新时间:2023-12-01 03:50:43 25 4
gpt4 key购买 nike

我有一个简单的代码,当您将鼠标悬停在元素上时,我会显示工具提示(通过更改显示属性)。有没有办法让我将鼠标悬停在工具提示上时工具提示不会淡出。

$('.element').mouseenter(function(){  
$(this).find('.tooltip').fadeIn();
}).mouseleave(function(){
$(this).find('.tooltip').fadeOut(); // I want the tooltip to not fadeout if move is over tooltip element
});

最佳答案

描述

如果您的工具提示是 .element 的子元素,它不会消失。

另一件事,我建议你使用 jQuery 的 .hover() 方法。

查看我的样本和这个 jsFiddle Demonstration

示例

<div class="element"> 
hover me
<div style="display:none" class="tooltip">Iam your tooltip</div>
</div>


$('.element').hover(function(){
$(this).find('.tooltip').fadeIn();
}, function(){
$(this).find('.tooltip').fadeOut();
});

更多信息

关于jquery - 焦点对准时工具提示淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8927199/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com