简体   繁体   中英

Disable Android/iOS Keyboard on specific Input Fields

I would like to disable or hide the Keyboard on Android and iOS on specific Input fields.

is this possible? something like

<input type="text" name="date" keyboard="disable" />

Use this

$('#input').focus(function() {
  this.blur();
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM