jquery计数悬停事件
我想计算鼠标悬停在 html 元素上的时间。
示例
链接
<a class="mylink">Check me Out !</a>
jquery
jQuery('.mylink').hover(function(){
//what should i do here to count
});
提前致谢!
I want to count how much time ,I am mouseovering on an html element.
for eample
link
<a class="mylink">Check me Out !</a>
jquery
jQuery('.mylink').hover(function(){
//what should i do here to count
});
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您想为每个匹配的元素保留一个单独的计数器,请执行以下操作:
然后您可以使用
$(selector).data('count')
获取每个元素的计数。编辑:修正了愚蠢的错误。
If you want to keep a separate counter for each matched element do the following:
Then you can get the count for each element using
$(selector).data('count')
.Edit: Fixed stupid mistake.
如果您想知道您在某个元素上悬停了多少秒,请尝试以下操作:
If you want to know how many seconds you have been hovering over an element try this:
调用这个函数...
call this function ...