有没有办法在Internet Explorer中执行以下解决方案? (IE7及以上)
link:Sending multipart/formdata with jQuery.ajax
解决方案代码在IE浏览器的每个浏览器中都很有用。
答案 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上传文件。他们有两种替代方法
这里是代码
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上传插件