我有这个标签,我使用下面的代码来跟踪文件更改。它适用于所有其他浏览器,但IE9。有人可以告诉我发生了什么。
$(fileElement).change(function () {
self.setProgress(0);
self.file = $(this)[0].files[0]; //This code errors out.
//There is no files object in $(this)[0] but it is there in IE10 and up and Chrome and Firefox.
});
由于