结合文本输入类型jquery mobile

时间:2013-01-14 23:57:33

标签: javascript html jquery-mobile

在此链接中:http://jquerymobile.com/demos/1.2.0/docs/forms/textinputs/底部有几种不同的文本输入类型。

现在我的问题是如何结合 tel 密码类型? tel 类型使用户能够在移动设备上显示数字键盘(键盘),如果该类型获得焦点而不是显示常规键盘。 密码类型隐藏用户键入的字符。由于我的网页上的密码只包含数字,因此如果我可以将 tel 类型和密码类型的功能组合在一起,那就太好了。

1 个答案:

答案 0 :(得分:3)

您可以使用pattern="[0-9]*"属性来实现此目的:

<input type="password" name="password" pattern="[0-9]*" id="password" value="" placeholder="Enter your numeric password">

它完全适用于iOS。