我正在尝试在IE9中获取文件信息,并且由于某种原因我无法获取文件信息。
我的代码出了什么问题?我试图把它分解为the simplest example I could。这适用于Chrome,但不是IE:
<input name="file" type="file" onpropertychange="alert(this.files);" onchange="alert(this.files);" />
答案 0 :(得分:6)
IE9中未实现File API
。
答案 1 :(得分:1)
您唯一能做的就是使用提醒(this.value)获取所选文件的名称;
如果您需要其他信息,最好在服务器端检查它们,因为它可能很容易操作它们。