10

我无法从 IE 10 中删除密码眼睛。我尝试使用

input[password]::-ms-reveal {display : none ;}

但对我不起作用。

有什么建议么?

4

1 回答 1

33

这个工作得很好:

input[type=password]::-ms-reveal,
input[type=password]::-ms-clear
{
    display: none;
}
于 2013-12-09T18:58:33.533 回答