为密码型文本框输入数据时,回显字符怎么设置才能是星号或黑点
时间: 2023-06-01 18:02:28 浏览: 216
在HTML中,可以使用type属性设置密码型文本框。例如:
```
<input type="password" name="password">
```
在CSS中,可以使用以下样式来设置密码型文本框的回显字符为星号或黑点:
```
input[type="password"] {
-webkit-text-security: disc; /* for Safari */
text-security: disc; /* for other browsers */
}
```
其中,-webkit-text-security和text-security属性用来设置文本框回显字符的样式。设置为disc时,回显字符会被替换为黑点。其他可用的值还包括circle和square。
阅读全文