悬停后保持焦点
我正在尝试展示一个聚焦链接的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试此处描述的 on mouseenter 事件
http://api.jquery.com/mouseenter/
即
you could try the on mouseenter event described here
http://api.jquery.com/mouseenter/
ie
问题是导致 .slideToggle('slow') 和悬停事件,
您可以使用 mouseenter()
或者只是:
the probleme is causing bye .slideToggle('slow') and the hover event
you can use mouseenter()
or just :