PhoneGap + Xcode + UIKeyboardTypeDecimalPad
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅此处的文档
我猜你可以使用
或
希望它有帮助
See the documentation here
I guess you can use
or
Hope it helps
您可以添加输入类型=“数字”,然后添加模式=“[0-9]*”以调出数字键盘。
You can add the input type="number" and then pattern="[0-9]*" to bring up a number pad.