在 iPad Safari 中强制隐藏键盘
我的订单中有一张表格;
文本框
下拉菜单
现在,当用户将焦点从文本框移动到下拉菜单时,键盘仍然保留,并且隐藏了下拉选项...
如何使键盘隐藏(文本框的onblur)
我已经尝试过window.blur,但它不起作用。
请帮我。谢谢。
I have a form in the order;
Textbox
Dropdown
Now when user moves focus from textbox to dropdown, the keyboard still remains and it kind of hides the dropdown options...
How do I make the keyboard hide (onblur of textbox)
I have already tried window.blur and it does not work.
Please help me. thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将 focus() 放在非文本元素上。
或者
you can try to focus() on a non-text element.
or