gpt4 book ai didi

iPhone Web 应用程序和特定输入类型

转载 作者:行者123 更新时间:2023-12-03 18:15:25 25 4
gpt4 key购买 nike

我记得不久前看过一个关于此问题的教程,但无法重新 Google 搜索它。

据说有一种方法可以让 iPhone 上的 Safari 提供默认键盘以外的键盘。它的情况与此类似,输入名称属性中的某些关键字触发了它......

这将给出默认键盘:

<input type="text" name="normal_text" />

这将给出数字输入键盘:

<input type="text" name="blah_blah_zip" />

这将给出数字输入键盘:

<input type="text" name="blah_blah_email" />

有谁知道这是否仍然是可用的功能,如果是,触发它的关键字是什么?谢谢!

最佳答案

Safari for iPhone How-To's表明使用不同的语法仍然可以实现这一点。

Text: <input type="text" /> <!-- display a standard keyboard -->
Telephone: <input type="tel" /> <!-- display a telephone keypad -->
URL: <input type="url" /> <!-- display a URL keyboard -->
Email: <input type="email" /> <!-- display an email keyboard -->
Zip Code: <input type="text" pattern="[0-9]*" /> <!-- display a numeric keyboard -->

注意:

To display a numeric keyboard, set the value of the pattern attribute to "[0-9]*" or "\d*".

关于iPhone Web 应用程序和特定输入类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/593245/

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