IE 10中的文件对象

时间:2014-06-24 09:39:28

标签: javascript jquery html5 internet-explorer-10

我正在尝试使用html input type=file元素并使用document.getelementbyid("..").files从中获取文件,它在chrome和firefox中工作正常但在IE 10中没有。我已经浏览了很多博客并且大多数人建议IE 10以后支持File对象,但它在IE 10或IE 11中都不适合我。有人可以帮我解决这个问题。

代码:

HTML: <input type="file" id="fuAttachment" name="fuAttachment" class="mof-strip-file" style="width:68%;" />

使用Javascript: var inputfile = document.getElementById("fuAttachment").files[0]; –

1 个答案:

答案 0 :(得分:0)

谢谢大家的帮助。事实证明,在Internet选项中需要关闭ActiveX内容过滤&gt;安全。首先将您的网站添加为可信站点,然后选择“自定义级别”,然后选择“在ActiveX过滤下禁用”。