gpt4 book ai didi

android - 如何在 focus() 上以编程方式隐藏 jquery mobile 中的键盘

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:18:41 25 4
gpt4 key购买 nike

我想在 Focus() 上隐藏键盘,但是当 $(".ui-input-text").focus(); 时它会自动打开键盘。

我只是想隐藏在特定的屏幕上,我已经用 document.activeElement.blur(); 进行了测试但它也没有 focus() on input 。

最佳答案

提交表单时,iOS 键盘有时可能不会自动关闭。这是一个相当大的可用性问题,因为用户不应该被要求手动关闭键盘以用于他们原本不希望需要这样做的用例。

一个简单的解决方案可以通过调用 document.activeElement 上的 blur 方法来实现,它可以有效地允许以编程方式隐藏键盘:

// automatically close the keyboard on iOS
document.activeElement.blur();

有关 HTML5 和移动应用程序事件的更多信息..

http://www.ericfeminella.com/blog/2012/12/27/ios-html5-input-element-tips/

关于android - 如何在 focus() 上以编程方式隐藏 jquery mobile 中的键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20579825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com