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

前端之家收集整理的这篇文章主要介绍了html – 如何使输入字段类型数字和密码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > 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“.

原文链接:https://www.f2er.com/html/231014.html

猜你在找的HTML相关文章