inputtype=tel输⼊框显⽰密⽂
为了在移动端实现密码输⼊框且调起的键盘为数字键盘,可以⽤-webkit-text-security:disc;text-security:disc;属性来实现。
语法:
text-security: circle | disc | none | square;
-webkit-text-security: circle | disc | none | square;
none ⽆。
circle 圆圈。
disc 圆形。
square 正⽅形。
//当type="password"时,输⼊框显⽰为圆点,调起的是英⽂键盘,⽽不是我们想要的数字键盘
<input type="password" placeholder="password"/>
input标签placeholder属性//当type="number" 或者 type="tel" 时,想要输⼊框显⽰圆点密⽂,同时调起数字键盘
<input type="tel" placeholder="tel" placeholder="tel" />

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。