删除键盘html文本框

发布于 2024-10-28 22:04:55 字数 85 浏览 4 评论 0 原文

我正在尝试模拟触摸屏手机的界面,该应用程序的一项功能是允许搜索,但我希望用户只能单击我将显示的虚拟键盘上的按钮,而无法使用电脑键盘。 我怎样才能做到这一点?

Im trying to simulate a interface from a touchscreen phone, one function of the app is to allow to search but i want the user only to be able to click on the buttons on the virtual keyboard i'll be displaying and not be able to use the pc keyboard.
How can i accomplish that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄居人 2024-11-04 22:04:55

使用 禁止键盘输入) >readonly 属性 docs..

<input id="someid" value="initial" readonly type="text" />

您仍然可以使用 javascript 更改它的值。

示例: http://jsfiddle.net/XBxj6/

Make the input readonly (to disallow keyboard input) by using the readonly attribute docs..

<input id="someid" value="initial" readonly type="text" />

you can still alter the value of it with javascript.

example: http://jsfiddle.net/XBxj6/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文