统计一段时间内的点击次数
如何计算一段时间内的点击次数,例如:用户在 2 秒内点击了多少次?我知道如何计算点击次数,但不知道如何测量时间
谢谢
how can I count the number of clicks in a time interval, for instace: how many clicks the user did in 2 seconds?? I know how to count clicks but I don't know how to measeure time
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试使用超时来清除检测点击的功能。使用 jQuery,尝试以下操作:
将
#something
替换为您想要检测点击的元素的 jQuery 选择器,并将alert
行替换为您自己将运行的代码定时器用完后。广告@m
Try using a timeout to clear the function that detects the clicks. With jQuery, try this:
Replace
#something
with a jQuery selector of an element you want the clicks to be detected on and thealert
line with your own code that will be run after the timer has run out.Ad@m
HTML:
JS:
演示: http://jsfiddle.net/pXMxQ/2/
HTML:
JS:
Demo: http://jsfiddle.net/pXMxQ/2/
使用 setTimeout 函数,
例如如果每次点击都会增加一个变量点击计数,您可以执行以下操作:
Use the setTimeout function
e.g. if Every click increments a variable clickcount you could do the following: