我正在尝试使用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]; –
答案 0 :(得分:0)
谢谢大家的帮助。事实证明,在Internet选项中需要关闭ActiveX内容过滤&gt;安全。首先将您的网站添加为可信站点,然后选择“自定义级别”,然后选择“在ActiveX过滤下禁用”。