如何使用jQuery隐藏软键盘

时间:2017-10-03 11:50:14

标签: javascript android jquery html

我有文字按钮:

<input type="text" class="field" id="something" name="something" placeholder="text" autofocus   />

我想删除android软键盘并留在此字段中(保持对焦)。但我只需要为此字段而不是整个文档执行此操作。是否可以使用jQuery

执行此操作

1 个答案:

答案 0 :(得分:0)

是的,但是您需要填写字段readonly。 但是这个过程意味着你不能编辑它,除非你让其他UI来操作字段值。

该领域的目标是什么?

例如,您可以使用blur()来移除焦点,并在JS中记住您关注哪些字段来执行其他操作。但你仍然会消除焦点。

此外还有更多技巧,但这需要模糊,聚焦其他领域或通过软键盘使你的领域无法使用。

How can I hide the Android keyboard using JavaScript?

HTML Mobile -forcing the soft keyboard to hide