当“返回”时会触发什么 Javascript 事件?选择输入时在 iPad 上单击 ?
当有人在 Safari 中按下 iPad 上的“返回”键并选择输入时,会触发哪个 Javascript 事件。
我正在使用输入元素,但没有将其包含在
我太热心了,答案如下:
Which Javascript event is fired when someone presses the "return" key on an iPad in Safari while an input is selected.
I'm using an input element, but not surrounding it in <form>
tags. I submit the $('#input').value()
when $('#button').click()
occurs. However, I'd like to also like to be able to submit when someone presses "return" on the iPad keyboard.
I was overzealous, here is the answer:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
它更干净、更简单。
What about using a
<form>
tag and binding your handler to thesubmit
tag.It's cleaner and simpler.
您可以通过以下方式检测 ipad 上 safari 中的 Enter 键事件:
然后在 javaScript 中
You can detect the enter key event in safari on ipad with following way :
then in javaScript