html – 如何使输入字段类型数字和密码?

html – 如何使输入字段类型数字和密码?,第1张

概述参见英文答案 > Is there a way to have a masked numeric input field?                                    1 我知道这个: <input type="tel"> 我知道这一点: <input type="password"> 但我想使用两者.我想要数字键盘在iOS上(具体来说),但是在打字后隐藏每个字符.有可能 参见英文答案 > Is there a way to have a masked numeric input field?1
我知道这个:
<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 – 如何使输入字段类型数字和密码?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1101658.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存