浏览器模式时如何删除“清除字段”X按钮:IE9文档模式:某些输入上的IE9.
我用这个代码
我用这个代码
<STYLE type="text/css"> input[type=text]::-ms-clear{ display: none; } input[type=password]::-ms-reveal{ display: none; } </STYLE>
当我选择浏览器模式如浏览器模式时,它工作正常:IE9
和文档模式:标准和(IE8,IE7)相同.但是当我选择浏览器模式浏览器模式时,它不起作用:IE9和文档模式:IE9和(IE8,IE7)相同.
解决方法
当您模拟旧模式时,这仅出现在IE10中;你不能使用CSS属性禁用它,因为它只在IE10模式下定义.
Dupe of
> IE 10’s -ms-clear pseudo-element,and IE5 quirks mode
> Remove IE 10 Clear Button From Input Field
> http://answers.microsoft.com/en-us/ie/forum/ie10-windows_7/how-can-input-clear-button-be-hidden-if-ie10-is/8f55602f-1a6b-452d-8cb3-e4cc6034b138
> https://stackoverflow.com/a/15227216/126229
> How can I disable the clear button that IE10 inserts into textboxes?