0

我正在尝试在移动浏览器中打开数字键盘, <input type="password" /> 但我无法执行此操作

当我<input type="number" /> 在我的 HTML 页面中设置移动浏览器打开此字段的数字键盘当查看器单击此字段时
我如何强制移动浏览器为输入类型打开数字键盘<input type="password" />

4

2 回答 2

1

webkit浏览器的解决方案(将数字类型输入的文本显示为光盘)

#numberPassword {
  -webkit-text-security: disc;
}
<input type="number" id="numberPassword" />

于 2017-08-21T07:51:57.503 回答
0

#numberPassword {
  -webkit-text-security: disc;
}
<input type="number" id="numberPassword" />

于 2017-08-21T08:59:25.153 回答