jQuery - 在 mousedown 上触发常规函数调用
我希望在将鼠标左键按住特定元素的同时,以给定的时间间隔定期调用一个函数。在 jQuery 中是否有一种简单的方法可以做到这一点,或者我应该使用普通的 javascript 和 setInterval/setTimeout ?
谢谢
I want a function to be called regularly at a given interval whilst the left mouse button is being held down over a specific element. Is there a simple way of doing this in jQuery or should I use vanilla javascript and setInterval/setTimeout?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一个提供
mousehold
事件的 jQuery 插件。http://remysharp.com/2006/12/15/jquery-mousehold- event/
如果您转到演示页面并且单击最后一个输入框右侧的箭头之一,您将看到它是如何工作的。
Here's a jQuery plugin that provides a
mousehold
event.http://remysharp.com/2006/12/15/jquery-mousehold-event/
If you go to the demo page and click on one of the arrows to the right of the last input box you'll see how it works.
这就是我的做法:
HTML:
JavaScript:
因此,您将处理程序绑定到
mousedown
和mouseup
事件,并设置hold
相应的 CSS 类。同时,一个独立的定时器iv
将检查hold
类是否被设置,并相应地调用您的函数 (foo
)。现场演示: http://jsfiddle.net/simevidas/7CUFE/
This is how I would do it:
HTML:
JavaScript:
So you bind a handler to both the
mousedown
andmouseup
events, and set thehold
CSS class accordingly. Meanwhile, an independent timeriv
will inspect whether or not thehold
class is set, and call your function (foo
) accordingly.Live demo: http://jsfiddle.net/simevidas/7CUFE/
因此,jQuery 不提供任何函数监视支持,您可以使用普通的 setTimeout 函数,如下所示:
jQuery does not provide any function watching support as a result, you could use the vanilla setTimeout function as follows: