jQuery 中鼠标靠近元素的函数
我想在鼠标靠近表格头元素时跟踪并显示工具提示。它与 mouseenter
事件配合使用,但我想在 mouseenter
靠近时在它之前显示工具提示。另外,我想在鼠标移出距离表头一定距离后删除工具提示。
这是我的代码:
$('thead').mouseenter(showtooltip);
$('thead').mouseout(removetooltip);
我怎样才能用 jQuery 做到这一点?
I want to track and show a tooltip when the mouse is near a table head element. It works with the mouseenter
event, but I want show the tooltip before mouseenter
, when it gets near. Also I want remove the tooltip after mouseout
some distance from the table head.
This is my code:
$('thead').mouseenter(showtooltip);
$('thead').mouseout(removetooltip);
How can I do this with jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这有效。第一个参数可以是任何 jQuery 对象。第二个参数是与对象的接近度,在本例中为
20px
。演示: http://jsfiddle.net/ThinkingStiff/Lpg8x/
脚本:
This works. The first parameter can be any jQuery object. The second parameter is the nearness to the object, in this case
20px
.Demo: http://jsfiddle.net/ThinkingStiff/Lpg8x/
Script: