更改 iPad 上 html 文本区域的键盘类型
我正在为 iPad 编写一个 Web 应用程序。 我知道可以使用以下方法更改选择 html input 字段时显示的键盘类型:
Text: <input type="text" />
Telephone: <input type="tel" />
URL: <input type="url" />
Email: <input type="email" />
Zip Code: <input type="text" pattern="[0-9]*" />
问题是我必须使用 textarea 而不是 input< /强>。是否有可能获得相同的结果?
如果没有:是否有任何方法可以更改 ENTER 键的键盘标签。目前默认标签是“返回”,我想要“发送”(因为它是一个聊天应用程序)。
多谢!
I'm writing a web application for iPad.
I know it's possible to change the type of keyboard displayed when an html input field is selected using:
Text: <input type="text" />
Telephone: <input type="tel" />
URL: <input type="url" />
Email: <input type="email" />
Zip Code: <input type="text" pattern="[0-9]*" />
the problem is that I have to use textarea instead of input. Is it possible to obtain the same result?
If not : is there any way to change the keyboard label for the ENTER key. At the moment the default label is "Return" and I would like to have "Send" (since it's a chat app).
thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果是纯 html/css/javascript。这是不可能的
If it is plain html/css/javascript. This is not possible
如果您使用
,“enter”键将被“search”按钮替换,我无法找到所有不同组合的列表,但我确信总有一款是您喜欢的。
注意:输入必须位于表单元素内才能正常工作。
if you use
<input title="Search">
the "enter" key is replaced by a "search" button, I haven't been able to find a listing of all the different combinations, but I'm sure there is one to you liking.Note: The input must be inside a form element for this to work.