jQuery: keyup event for mobile device

我只是一个虾纸丫 提交于 2019-11-27 05:25:54
Joyson

You can add input event. It is an event that triggers whenever the input changes. Input works both on desktop as well as mobile phones

test.on('keyup input', function(){
  //code
});

You can check this answer for more details on jQuery Input Event

Frank

There are three events you can use (but you have to be careful on how you "combine" them):

  • keyup : it works on devices with a keyboard, it's triggered when you release a key (any key, even keys that don't show anything on the screen, like ALT or CTRL);

  • touchend: it works on touchscreen devices, it's triggered when you remove your finger/pen from the display;

  • input: it's triggered when you press a key "and the input changes" (if you press keys like ALT or CTRL this event is not fired).

The input event works on keyboard devices and with touchscreen devices, it's important to point this out because in the accepted answer the example is correct but approximative:

test.on('keyup input', function(){
}

On keyboard based devices, this function is called twice because both the events keyup and input will be fired.

The correct answer should be:

test.on('keyup touchend', function(){
}

(the function is called on keyup for desktops/laptops OR on touchend for mobiles)

or you can just simply use

test.on('input', function(){
}

but remember that the input event will not be triggered by all keys (CTRL, ALT & co. will not fire the event).

The touchend event is fired when a touch point is removed from the device.

https://developer.mozilla.org/en-US/docs/Web/Events/touchend

You can pass keyup and touchend events into the .on() jQuery method (instead of the keyup() method) to trigger your code on both of these events.

test.on('keyup touchend', function(){
//code
});

You should add a input event. It works on both mobile and computer devices.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!