如何在jQuery中监听并按住?


Answers:


173
var timeoutId = 0;

$('#myElement').on('mousedown', function() {
    timeoutId = setTimeout(myFunction, 1000);
}).on('mouseup mouseleave', function() {
    clearTimeout(timeoutId);
});

编辑:每个AndyE的更正...谢谢!

编辑2:现在为每个gnarf使用具有相同处理程序的两个事件使用bind


4
更新效果更好,但您也可以考虑清除mouseleave处理程序中的间隔。
Andy E

5
您可以对mouseup / mouseleave使用相同的功能:.bind('mouseup mouseleave', function() {
gnarf 2010年

@gnarf好点!我已经对其进行了编辑,以包括您的建议。
treeface

好东西!在jQuery Mobile中实现,没有任何问题。
安东尼

@treeface光滑,但是我很困惑有效负载会去哪里。是否应在mouseup事件中调用特定于实现的处理程序?
鲍勃·斯坦因

13

空编码(但已在此提琴上进行了测试)

(function($) {
    function startTrigger(e) {
        var $elem = $(this);
        $elem.data('mouseheld_timeout', setTimeout(function() {
            $elem.trigger('mouseheld');
        }, e.data));
    }

    function stopTrigger() {
        var $elem = $(this);
        clearTimeout($elem.data('mouseheld_timeout'));
    }


    var mouseheld = $.event.special.mouseheld = {
        setup: function(data) {
            // the first binding of a mouseheld event on an element will trigger this
            // lets bind our event handlers
            var $this = $(this);
            $this.bind('mousedown', +data || mouseheld.time, startTrigger);
            $this.bind('mouseleave mouseup', stopTrigger);
        },
        teardown: function() {
            var $this = $(this);
            $this.unbind('mousedown', startTrigger);
            $this.unbind('mouseleave mouseup', stopTrigger);
        },
        time: 750 // default to 750ms
    };
})(jQuery);

// usage
$("div").bind('mouseheld', function(e) {
    console.log('Held', e);
})

当我们点击并按住设备时如何选择颜色不同的文本
幸运的

8

如果有人感兴趣,我为此做了一个简单的JQuery插件。

http://plugins.jquery.com/pressAndHold/


好一个。能够修改此设置以检测到已拖动对象,从而删除了一条消息,告诉用户拖动该对象。
Starfs

FANTASTIC插件。放入我的项目,然后开始工作。
安迪

您的插件不是为Bootstrap编写的,但可以很好地工作!没有多余的CSS或混乱。正常工作。荣誉
安迪


1

这是我当前的实现:

$.liveClickHold = function(selector, fn) {

    $(selector).live("mousedown", function(evt) {

        var $this = $(this).data("mousedown", true);

        setTimeout(function() {
            if ($this.data("mousedown") === true) {
                fn(evt);
            }
        }, 500);

    });

    $(selector).live("mouseup", function(evt) {
        $(this).data("mousedown", false);
    });

}

1
    var _timeoutId = 0;

    var _startHoldEvent = function(e) {
      _timeoutId = setInterval(function() {
         myFunction.call(e.target);
      }, 1000);
    };

    var _stopHoldEvent = function() {
      clearInterval(_timeoutId );
    };

    $('#myElement').on('mousedown', _startHoldEvent).on('mouseup mouseleave', _stopHoldEvent);

0

我写了一些代码来简化它

//Add custom event listener
$(':root').on('mousedown', '*', function() {
    var el = $(this),
        events = $._data(this, 'events');
    if (events && events.clickHold) {
        el.data(
            'clickHoldTimer',
            setTimeout(
                function() {
                    el.trigger('clickHold')
                },
                el.data('clickHoldTimeout')
            )
        );
    }
}).on('mouseup mouseleave mousemove', '*', function() {
    clearTimeout($(this).data('clickHoldTimer'));
});

//Attach it to the element
$('#HoldListener').data('clickHoldTimeout', 2000); //Time to hold
$('#HoldListener').on('clickHold', function() {
    console.log('Worked!');
});
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<img src="http://lorempixel.com/400/200/" id="HoldListener">

在JSFiddle上查看

现在,您只需要设置保持时间并clickHold在元素上添加事件


0

试试这个:

var thumbnailHold;

    $(".image_thumb").mousedown(function() {
        thumbnailHold = setTimeout(function(){
             checkboxOn(); // Your action Here

         } , 1000);
     return false;
});

$(".image_thumb").mouseup(function() {
    clearTimeout(thumbnailHold);
});
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.