在IE中使用jQuery.ajax发送multipart / formdata

时间:2011-10-26 06:53:24

标签: javascript jquery internet-explorer

有没有办法在Internet Explorer中执行以下解决方案? (IE7及以上)

link:Sending multipart/formdata with jQuery.ajax

解决方案代码在IE浏览器的每个浏览器中都很有用。

4 个答案:

答案 0 :(得分:9)

不,您无法使用jQuery.ajax上传文件,但IE不支持FormData

查看Uploadify jQuery plugin以通过ajax上传文件。您还可以使用jQuery Form Plugin通过ajax上传文件。

答案 1 :(得分:2)

不幸的是,IE还不支持FormData API。但是,您可以使用任意数量的jQuery AJAX表单插件实现类似的功能,例如this one

答案 2 :(得分:-1)

我也遇到过这个问题,对有需要的人来说可能有用。 仅从IE10开始支持 FormData a link。错误是因为您无法在旧浏览器中绑定输入字段,例如在使用FormData的现代浏览器中。  您无法通过IE中的AJAX上传文件。他们有两种替代方法

  • 使用像Uploadify jQuery插件这样的插件通过
    上传文件 阿贾克斯。你也可以使用jQuery Form Plugin来 multiuploadify

  • 其他方式是您可以使用iframe。

这里是代码

  if(!isAjaxUploadSupported()){ //IE fallfack
            var iframe = document.createElement("<iframe name='upload_iframe_myFile' id='upload_iframe_myFile'>");
            iframe.setAttribute("width", "0");
            iframe.setAttribute("height", "0");
            iframe.setAttribute("border", "0");
            iframe.setAttribute("src","javascript:false;");
            iframe.style.display = "none";

            var form = document.createElement("form");
            form.setAttribute("target", "upload_iframe_myFile");
            form.setAttribute("action", "fileupload.aspx"); //change page to post
            form.setAttribute("method", "post");
            form.setAttribute("enctype", "multipart/form-data");
            form.setAttribute("encoding", "multipart/form-data");
            form.style.display = "block";

            var files = document.getElementById("myFile");//Upload Id
            form.appendChild(files);
            $conv("#container_myFile").html("Uploading...");

            document.body.appendChild(form);
            document.body.appendChild(iframe);
            iframeIdmyFile = document.getElementById("upload_iframe_myFile");

            // Add event...
            var eventHandlermyFile = function () {
                if (iframeIdmyFile.detachEvent) 
                    iframeIdmyFile.detachEvent("onload", eventHandlermyFile);
                else 
                    iframeIdmyFile.removeEventListener("load", eventHandlermyFile, false);

                response = getIframeContentJSON(iframeIdmyFile);

            }

            if (iframeIdmyFile.addEventListener) 
                iframeIdmyFile.addEventListener("load", eventHandlermyFile, true);
            if (iframeIdmyFile.attachEvent) 
                iframeIdmyFile.attachEvent("onload", eventHandlermyFile);

            form.submit();

            return;
        }
        ////var data = new FormData();
        //// code go here(for modern browsers)


        function isAjaxUploadSupported(){
                var input = document.createElement("input");
                input.type = "file";

                return (
                    "multiple" in input &&
                        typeof File != "undefined" &&
                        typeof FormData != "undefined" &&
                        typeof (new XMLHttpRequest()).upload != "undefined" );
        }
        function getIframeContentJSON(iframe){
                //IE may throw an "access is denied" error when attempting to access contentDocument on the iframe in some cases
                try {
                    // iframe.contentWindow.document - for IE<7
                    var doc = iframe.contentDocument ? iframe.contentDocument: iframe.contentWindow.document,
                        response;

                    var innerHTML = doc.body.innerHTML;
                    //plain text response may be wrapped in <pre> tag
                    if (innerHTML.slice(0, 5).toLowerCase() == "<pre>" && innerHTML.slice(-6).toLowerCase() == "</pre>") {
                        innerHTML = doc.body.firstChild.firstChild.nodeValue;
                    }
                    response = eval("(" + innerHTML + ")");
                } catch(err){
                    response = {success: false};
                }

                return response;
            }

答案 3 :(得分:-2)

尝试设置表单的属性,如下所示:

  

$(“#yourformid”)。attr(“enctype”,“multipart / form-data”)。attr(   “encoding”,“multipart / form-data”);

或者更确切地说是尝试找到现成的jquery上传插件