我知道这个:
<input type="tel">
我知道这一点:
<input type="password">
但我想使用两者.我想要数字键盘在iOS上(具体来说),但是在打字后隐藏每个字符.有可能吗?
<input type="tel|password">解决方法 对于iOS,您可以将输入设置为键入“密码”,并仍然使用HTML5属性“模式”触发数字键盘:
<input type="password" pattern="[0-9]*" ... />
从Apple-Documentation:
总结To display a numeric keyboard,set the value of the pattern attribute to “[0-9]” or “\d“.
以上是内存溢出为你收集整理的html – 如何使输入字段类型数字和密码?全部内容,希望文章能够帮你解决html – 如何使输入字段类型数字和密码?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)