jqueryFile上传插件不能正常使用IE 8

时间:2014-08-28 03:13:22

标签: angularjs internet-explorer-8 jquery-file-upload

我在angularjs项目中使用Jquery文件上传插件,并且遇到了IE8的一些困难,主要是没有发生任何事情!。我没有看到添加回调没有触发。在FF和Chrome中工作得很好

以下代码在Chrome中运行良好,但在IE 8中没有任何事情发生。

我在应用

中加入了以下插件
jquery: 1.11.0
jquery.ui.widget
jquery.iframe-transport:1.8.2
jquery.fileupload:5.41.0

文件中的代码:

  $('#fileupload').fileupload({
                add: function (e, data) {
                    alert('add');
                    data.submit();
                },
                progress: function (e, data) {
                    alert('progress');
                },
                start: function (e) {
                    alert('start');
                }
            }).bind('fileuploadadd', function (e, data) {
                alert('fileuploadadd');
            }).bind('fileuploadprogress', function (e, data) {
                alert('fileuploadprogress');
            }).bind('fileuploadstart', function (e) {
                alert('fileuploadstart');
            });

在选择文件时,不会在IE 8中触发添加回调。任何帮助将不胜感激。

0 个答案:

没有答案