我使用了输入类型="数字"仅显示数字键盘。它在android中运行良好,但在iOS中运行不正常。还有其他办法吗?
我真正想要的是一个输入框,只允许0到9,输入的最大长度为1。
请告诉我。提前谢谢。
<input type="number" maxlength="1"/>
答案 0 :(得分:0)
您可以使用模式:pattern="[0-9]*"
所以:<input type="number" maxlength="1" pattern="[0-9]*" />
答案 1 :(得分:0)
<input type="text" pattern="\d*">
&#13;
或者您可以使用插件 https://market.ionic.io/plugins/ion-digit-keyboard
答案 2 :(得分:0)
使用type =“ tel”
<input type="tel" />