Internet Explorer过滤<input />透明

时间:2011-06-15 10:11:01

标签: javascript jquery html css

所以我想在IE和IE下使<input type="text">透明 filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0)完成工作 然而,文本无法看到......是否有一些解决方法?

谢谢。

1 个答案:

答案 0 :(得分:4)

以下内容如何?

<input type="text" class="transparent"/>

<style>
input.transparent{
    background-color: transparent;
    border: 0 none; 
}
</style>

此外,IE版本也有很大的不同。