更改 iPad 上 html 文本区域的键盘类型

发布于 2024-12-02 05:51:17 字数 491 浏览 1 评论 0原文

我正在为 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 技术交流群。

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

发布评论

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

评论(2

随遇而安 2024-12-09 05:51:17

如果是纯 html/css/javascript。这是不可能的

If it is plain html/css/javascript. This is not possible

空袭的梦i 2024-12-09 05:51:17

如果您使用 ,“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.

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