悬停后保持焦点

发布于 2024-11-09 07:19:51 字数 169 浏览 0 评论 0原文

我正在尝试展示一个聚焦链接的 div。但是当我从链接中删除悬停时如何确保 div 不会消失。 这里是代码的链接

基本上,我只想在悬停时显示div,但将其关闭使用关闭按钮。如何才能实现这一目标?

I am trying to show a div on focusing a link. But how to make sure the div does not disappear when I remove the hover from the link. Here is the link to the code

Basically, I just want to show the div on hover, but close it using the close button. How can this be achieved?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心房的律动 2024-11-16 07:19:51

您可以尝试此处描述的 on mouseenter 事件

http://api.jquery.com/mouseenter/

$("#clickme").mouseenter(function() { 
    e.preventDefault();  
    $("#draggable").slideToggle('slow');
});

you could try the on mouseenter event described here

http://api.jquery.com/mouseenter/

ie

$("#clickme").mouseenter(function() { 
    e.preventDefault();  
    $("#draggable").slideToggle('slow');
});
伤痕我心 2024-11-16 07:19:51

问题是导致 .slideToggle('slow') 和悬停事件,

您可以使用 mouseenter()
或者只是:

$("#clickme").hover(function(e){
     e.preventDefault();
     $("#draggable").show('slow'); // or anay other effect like slideDown()
 });

the probleme is causing bye .slideToggle('slow') and the hover event

you can use mouseenter()
or just :

$("#clickme").hover(function(e){
     e.preventDefault();
     $("#draggable").show('slow'); // or anay other effect like slideDown()
 });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文