PhoneGap + Xcode + UIKeyboardTypeDecimalPad

发布于 2024-12-27 14:13:40 字数 153 浏览 0 评论 0原文

我正在使用 PhoneGap + Xcode 创建一个应用程序。在 HTML 中使用此标签时,有什么方法可以显示 UIKeyboardTypeDecimalPad:

有任何解决方法、mods、调整吗?

I'm using PhoneGap + Xcode to create an app. Is there any way I can show the UIKeyboardTypeDecimalPad when using this tag in the HTML:

<input type="" />

Any work-arounds, mods, tweaks?

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

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

发布评论

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

评论(2

成熟的代价 2025-01-03 14:13:40

请参阅此处的文档

我猜你可以使用

<input type="text" pattern="[0-9]*"></input>

<input type="tel"></input>

希望它有帮助

See the documentation here

I guess you can use

<input type="text" pattern="[0-9]*"></input>

or

<input type="tel"></input>

Hope it helps

冰雪梦之恋 2025-01-03 14:13:40

您可以添加输入类型=“数字”,然后添加模式=“[0-9]*”以调出数字键盘。

You can add the input type="number" and then pattern="[0-9]*" to bring up a number pad.

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