jQuery - 在 mousedown 上触发常规函数调用

发布于 2024-10-22 17:35:47 字数 130 浏览 2 评论 0原文

我希望在将鼠标左键按住特定元素的同时,以给定的时间间隔定期调用一个函数。在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

梦开始←不甜 2024-10-29 17:35:47

这是一个提供 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.

半窗疏影 2024-10-29 17:35:47

这就是我的做法:

HTML:

<div id="box"></div>

JavaScript:

var box = $('#box'),
    iv;

function foo() {
    box.append('*');    
}

box.bind('mousedown mouseup', function(e) {
    $(this).toggleClass('hold', e.type === 'mousedown');
});

iv = setInterval(function() {    
    box.hasClass('hold') && foo();
}, 1000);

因此,您将处理程序绑定到 mousedownmouseup 事件,并设置 hold相应的 CSS 类。同时,一个独立的定时器 iv 将检查 hold 类是否被设置,并相应地调用您的函数 (foo)。

现场演示: http://jsfiddle.net/simevidas/7CUFE/

This is how I would do it:

HTML:

<div id="box"></div>

JavaScript:

var box = $('#box'),
    iv;

function foo() {
    box.append('*');    
}

box.bind('mousedown mouseup', function(e) {
    $(this).toggleClass('hold', e.type === 'mousedown');
});

iv = setInterval(function() {    
    box.hasClass('hold') && foo();
}, 1000);

So you bind a handler to both the mousedown and mouseup events, and set the hold CSS class accordingly. Meanwhile, an independent timer iv will inspect whether or not the hold class is set, and call your function (foo) accordingly.

Live demo: http://jsfiddle.net/simevidas/7CUFE/

复古式 2024-10-29 17:35:47

因此,jQuery 不提供任何函数监视支持,您可以使用普通的 setTimeout 函数,如下所示:

var timer;

function functionToRun() {
    // Function code here...
    functionToRun();
}

var inFunction = function() {
    timer = window.setTimeout(functionToRun, intervalToRunFor);
}

var outFunction = function() { 
    window.clearTimeout(timer);
}

$('selector').hover(function() { inFunction, outFunction }

jQuery does not provide any function watching support as a result, you could use the vanilla setTimeout function as follows:

var timer;

function functionToRun() {
    // Function code here...
    functionToRun();
}

var inFunction = function() {
    timer = window.setTimeout(functionToRun, intervalToRunFor);
}

var outFunction = function() { 
    window.clearTimeout(timer);
}

$('selector').hover(function() { inFunction, outFunction }
青衫负雪 2024-10-29 17:35:47
var mouseDown = false;

$('#yourID').bind('click', function() {
    mouseDown = true;
});

$('#yourID').bind('mouseup', function() {
    mouseDown = false;
});

setInterval('checkOut();',5000);

function checkOut() {
   if(mouseDown) alert('mouse is down! Whatup!');
});
var mouseDown = false;

$('#yourID').bind('click', function() {
    mouseDown = true;
});

$('#yourID').bind('mouseup', function() {
    mouseDown = false;
});

setInterval('checkOut();',5000);

function checkOut() {
   if(mouseDown) alert('mouse is down! Whatup!');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文