jquery touchstart in browser

后端 未结 3 1431
一生所求
一生所求 2020-12-09 17:06

As touchstart/touchend is yet not supported in most of the desktop browsers. How can I create touchstart event that will be the same as mousedown event (that is supported in

3条回答
  •  天涯浪人
    2020-12-09 17:17

    You can bind both at once...

    $('obj').bind('touchstart mousedown', function(e){
    });
    

    If you want to mousedown event to fire touchstart events automatically (so you only need to bind touchstart) use...

    $(document).bind('mousedown', function(event) {
        $(event.target).trigger('touchstart');
    });
    

    Note that this means mousedown events must propagate to document before the custom touchstart event can be triggered. This could have unexpected side effects.

提交回复
热议问题