<input type =“file”/>在IE9中不起作用

时间:2015-08-24 17:35:35

标签: javascript jquery internet-explorer-9 input-type-file

我有这个标签,我使用下面的代码来跟踪文件更改。它适用于所有其他浏览器,但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.

        });

由于

0 个答案:

没有答案