Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Jqueryを使用してAndroidテンキーの「次へ」ボタンイベントを検出する方法について疑問に思っています。そのボタンイベントをトリガーする方法を教えてください。
nextJQuery で次のバインドを使用して、キーボードの押下を検出できます。
next
$('input').on('keydown', function(e){ if(e.which === 9) { //your code here } });
「次へ」ボタンは、tabキーコード 9 であるキーボードの keypress イベントをエミュレートします。 残念ながら、keypress および keyup イベントはキーイベントを検出しないため、nextにバインドする必要がありますkeydown。
tab
keydown