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.
如何在 iPhone 键盘上使用 JS/Jquery 捕获上一个和下一个按钮事件?我试图让它填充表单中的字段。
我认为您无法自己捕捉按钮按下,但由于它们的目的是将焦点从一个字段转移到下一个字段,您可以捕捉blur和focus事件并从中工作。
blur
focus
当然,这些事件也会在其他时间触发,因此根据您的意图,您可能想做一些事情,例如听模糊然后随后关注相邻的表单字段,尽管您永远不会 100% 确定它被触发按其中一个按钮。