IE下使用ajaxFileUpload.js上传图片成功后,弹出打开/另存为窗口

qq2St 2014-03-05 03:17:55
$.ajaxFileUpload({
url : '/a/b',
type:'post',
secureuri : false,
fileElementId : 'res_add_edit_attachment',
dataType : 'jsonp',
data: {//加入的文本参数
"Id": uuid
},
success : function(data) {
if(data.data == "操作成功"){
alert("操作成功");
},
error : function(data, e) {
alert(data.data);
//alert('上传失败!');
}
});

上传成功后,在IE下会弹出保存窗口,打开是后台返回的“操作成功”字段
无论把dataType 修改成text,script,json等格式都一样
有什么解决方法或者替代方案没?


ps:后台必需要返回“操作成功”字段。
...全文
2717 15 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
15 条回复
切换为时间正序
请发表友善的回复…
发表回复
kitajima-- 2016-09-21
  • 打赏
  • 举报
回复
还是不行啊。
kitajima-- 2016-09-21
  • 打赏
  • 举报
回复
我先试试喽上的兼容js,先试试,再评价。
wangcomputer2010 2016-08-03
  • 打赏
  • 举报
回复
上面js代码,ajaxfileUpload.js兼容ie7、8、9、10、11、firefox、chrome等浏览器
wangcomputer2010 2016-08-03
  • 打赏
  • 举报
回复
// JavaScript Document jQuery.extend({ createUploadIframe: function(id, uri) { //create frame var frameId = 'jUploadFrame' + id; if(window.ActiveXObject) { //var io = document.createElement('<iframe id="' + frameId + '" name="' + frameId + '" />'); if(jQuery.browser.version=="9.0" || jQuery.browser.version=="10.0"){ var io = document.createElement('iframe'); io.id = frameId; io.name = frameId; }else if(jQuery.browser.version=="6.0" || jQuery.browser.version=="7.0" || jQuery.browser.version=="8.0"){ var io = document.createElement('<iframe id="' + frameId + '" name="' + frameId + '" />'); if(typeof uri== 'boolean'){ io.src = 'javascript:false'; } else if(typeof uri== 'string'){ io.src = uri; } } }else { var io = document.createElement('iframe'); io.id = frameId; io.name = frameId; } io.style.position = 'absolute'; io.style.top = '-1000px'; io.style.left = '-1000px'; document.body.appendChild(io); return io; }, createUploadForm: function(id, fileElementId, data) { //create form var formId = 'jUploadForm' + id; var fileId = 'jUploadFile' + id; var form = jQuery('<form action="" method="POST" name="' + formId + '" id="' + formId + '" enctype="multipart/form-data"></form>'); var oldElement = jQuery('#' + fileElementId); var newElement = jQuery(oldElement).clone(); jQuery(oldElement).attr('id', fileId); jQuery(oldElement).before(newElement); jQuery(oldElement).appendTo(form); //add data if(data) { for (var i in data) { $('<input type="hidden" name="' + i + '" value="' + data[i] + '" />').appendTo(form); } } //set attributes jQuery(form).css('position', 'absolute'); jQuery(form).css('top', '-1200px'); jQuery(form).css('left', '-1200px'); jQuery(form).appendTo('body'); return form; }, ajaxFileUpload: function(s) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({}, jQuery.ajaxSettings, s); var id = s.id; //var id = s.fileElementId; var form = jQuery.createUploadForm(id, s.fileElementId,s.data); var io = jQuery.createUploadIframe(id, s.secureuri); var frameId = 'jUploadFrame' + id; var formId = 'jUploadForm' + id; if( s.global && ! jQuery.active++ ){ // Watch for a new set of requests jQuery.event.trigger( "ajaxStart" ); } var requestDone = false; // Create the request object var xml = {}; if( s.global ){ jQuery.event.trigger("ajaxSend", [xml, s]); } var uploadCallback = function(isTimeout){ // Wait for a response to come back var io = document.getElementById(frameId); try{ if(io.contentWindow){ xml.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:null; xml.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document; }else if(io.contentDocument){ xml.responseText = io.contentDocument.document.body?io.contentDocument.document.body.innerHTML:null; xml.responseXML = io.contentDocument.document.XMLDocument?io.contentDocument.document.XMLDocument:io.contentDocument.document; } }catch(e){ jQuery.handleError(s, xml, null, e); } if( xml || isTimeout == "timeout"){ requestDone = true; var status; try { status = isTimeout != "timeout" ? "success" : "error"; // Make sure that the request was successful or notmodified if( status != "error" ){ // process the data (runs the xml through httpData regardless of callback) var data = jQuery.uploadHttpData( xml, s.dataType ); if( s.success ){ // ifa local callback was specified, fire it and pass it the data s.success( data, status ); }; if( s.global ){ // Fire the global callback jQuery.event.trigger( "ajaxSuccess", [xml, s] ); }; } else{ jQuery.handleError(s, xml, status); } } catch(e){ status = "error"; jQuery.handleError(s, xml, status, e); }; if( s.global ){ // The request was completed jQuery.event.trigger( "ajaxComplete", [xml, s] ); }; // Handle the global AJAX counter if(s.global && ! --jQuery.active){ jQuery.event.trigger("ajaxStop"); }; if(s.complete){ s.complete(xml, status); }; jQuery(io).unbind(); setTimeout(function(){ try{ jQuery(io).remove(); jQuery(form).remove(); }catch(e){ jQuery.handleError(s, xml, null, e); }}, 100); xml = null; }; } // Timeout checker if( s.timeout > 0 ){ setTimeout(function(){if(!requestDone ){uploadCallback( "timeout" );}}, s.timeout); } try{ var form = jQuery('#' + formId); jQuery(form).attr('action', s.url); jQuery(form).attr('method', 'POST'); jQuery(form).attr('target', frameId); if(form.encoding){ form.encoding = 'multipart/form-data'; }else{ form.enctype = 'multipart/form-data'; } jQuery(form).submit(); } catch(e){ jQuery.handleError(s, xml, null, e); } /*if(window.attachEvent){ document.getElementById(frameId).attachEvent('onload', uploadCallback); } else{ document.getElementById(frameId).addEventListener('load', uploadCallback, false); } */ jQuery('#' + frameId).load(uploadCallback); return {abort: function () {}}; }, uploadHttpData: function( r, type ) { var data = !type; data = type == "xml" || data ? r.responseXML : r.responseText; // ifthe type is "script", eval it in global context if( type == "script" ){ jQuery.globalEval( data ); } // Get the JavaScript object, ifJSON is used. if( type == "json" ){ data = r.responseText; var start = data.indexOf(">"); if(start != -1) { var end = data.indexOf("<", start + 1); if(end != -1) { data = data.substring(start + 1, end); } } eval( "data = " + data); } // evaluate scripts within html if( type == "html" ){ jQuery("<div>").html(data).evalScripts(); } return data; }, /*handleError: function( s, xml, status, e ) { // If a local callback was specified, fire it if ( s.error ) s.error( xml, status, e ); // Fire the global callback if ( s.global ) jQuery.event.trigger( "ajaxError", [xml, s, e] ); }*/ handleError: function( s, xhr, status, e ) { // If a local callback was specified, fire it if ( s.error ) { s.error.call( s.context || s, xhr, status, e ); } // Fire the global callback if ( s.global ) { (s.context ? jQuery(s.context) : jQuery.event).trigger("ajaxError", [xhr, s, e] ); } } });
captainnx 2016-06-24
  • 打赏
  • 举报
回复
content-type设置成text/json就可以了,亲测~
qq_32847767 2016-04-20
  • 打赏
  • 举报
回复
[quote=引用 4 楼 u013193309 的回复:] 大神,你们怎么解决的这个问题,改content-type我已经试过了,没好使。
qq_32847767 2016-04-20
  • 打赏
  • 举报
回复
引用 6 楼 eric_2030 的回复:
怎么我的HTML头文件是Content-type:text/html,也不行呢?求大神指教?
。并且我改成Content-type:text/plain,也不行!!!
ft2120030 2015-12-29
  • 打赏
  • 举报
回复
dataType用text,后台返回ISO-8859-1字符串就能解决弹框和乱码问题,java参考: private String formatAjaxUploadReturn(String msg) throws Exception { return new String(msg.getBytes("UTF-8"),"ISO-8859-1"); }
insomniaAtNight 2015-10-21
  • 打赏
  • 举报
回复
ie不兼容用不了
eric_2030 2015-05-25
  • 打赏
  • 举报
回复
怎么我的HTML头文件是Content-type:text/html,也不行呢?求大神指教?
xielongxin 2015-03-20
  • 打赏
  • 举报
回复
我也遇到了同样的问题,请问楼主是怎么解决的呀,谢谢!
逸挚 2014-12-21
  • 打赏
  • 举报
回复
good,困扰好久的问题解决了,谢谢大神!
liutao5121 2014-04-15
  • 打赏
  • 举报
回复
已经修正该问题答案:;楼上的都不行 这个我自己亲测:将响应头设置为Content-type:text/html。
gangzai 2014-03-05
  • 打赏
  • 举报
回复
在你的服务器端文件接收完成后输出的响应头设置为Content-type:text/json
yyl8781697 2014-03-05
  • 打赏
  • 举报
回复
实在不行就输出页面的头文件格式设置为text/plain 然后收到数据之后使用 data= JSON.parse(data);//将文本转为json之后再判断

87,997

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 JavaScript
社区管理员
  • JavaScript
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧