浏览按钮在Internet Explorer中不同

时间:2015-12-08 05:40:57

标签: html css file internet-explorer input

使用以下输入标记实现了Browse Button

<input type="file" name="test" style="padding-right: 5px; vertical-align: middle;"> </input>

这在FirefoxChrome中正常运行,其方式如下:

enter image description here

Internet Explorer中,同样的情况如下:

enter image description here

如何解决浏览按钮的这种不同行为?

1 个答案:

答案 0 :(得分:0)

您好每个浏览器都有每个元素的默认样式。为此,没有确切的解决方案,但您可以使用uniform.js在每个仅在文件中生效的浏览器中匹配相同的内容。

 $('input[type=file]').uniform();