PhoneGap + Xcode + UIKeyboardTypeDecimalPad

时间:2012-01-17 14:16:34

标签: xcode cordova

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

<input type="" />

任何解决方法,修改,调整?

2 个答案:

答案 0 :(得分:1)

See the documentation here

我想你可以使用

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

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

希望有所帮助

答案 1 :(得分:0)

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