在IOS中显示数字键盘问题,Ionic

时间:2017-08-04 04:21:33

标签: javascript ionic-framework

我使用了输入类型="数字"仅显示数字键盘。它在android中运行良好,但在iOS中运行不正常。还有其他办法吗?

我真正想要的是一个输入框,只允许0到9,输入的最大长度为1。

请告诉我。提前谢谢。

<input type="number" maxlength="1"/>

3 个答案:

答案 0 :(得分:0)

您可以使用模式:pattern="[0-9]*"

所以:<input type="number" maxlength="1" pattern="[0-9]*" />

答案 1 :(得分:0)

&#13;
&#13;
<input type="text" pattern="\d*">
&#13;
&#13;
&#13;

或者您可以使用插件 https://market.ionic.io/plugins/ion-digit-keyboard

答案 2 :(得分:0)

使用type =“ tel”

<input type="tel" />