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 数字键盘上的“下一步”按钮事件。请给我解决方案如何触发该按钮事件。
您可以next通过在 JQuery 中使用以下绑定来检测键盘按下:
next
$('input').on('keydown', function(e){ if(e.which === 9) { //your code here } });
“下一步”按钮模拟tab键盘上的 keypress 事件,即键码 9。不幸的是,keypress 和 keyup 事件不会检测到next键事件,因此您需要将其绑定到keydown.
tab
keydown