1、文件上传,图片上传,第三方uploadify插件,http://www.uploadify.com/about/
主要思路就是:
a、js创建form表单,iframe,添加到body里,form的target要和iframe的name一致。
b、form表单里更新数据,submit提交
c、如果上传文件,图片,form里面添加 input-file 元素,绑定onchange事件,js触发,在onchange里面添加submit事件
d、关于回调:iframe提交成功后,返回的数据在iframe子页面的里面,可以这样获取,需要拆分:
$iframe[0].contentWindow.document.querySelector('body').innerHTML
代码片:
<div class="jb51code">
<pre class="brush:js;">
var target = 'frameFile';
var input = '<input type="file" name="file" onchange="changeImage()">' +
'<input name="appId" value="'+id+'">' +
'<input type="submit" name="submit" value="submit">';
var $form = $('<form action="'+ url +'" target="'+ target +'" enctype="multipart/form-data" method="post" id="upImageForm" style="display:none">'+input+'').appendTo('body');
var $iframe = $('<iframe name="'+ target +'" style="display:none">').appendTo('body');
$form.find('input').eq(0).click();
window.changeImage = function(){
$form.find('input').eq(-1).click();
};
//检测iframe页面load
$iframe.load(function(e){
var str = $iframe[0].contentWindow.document.querySelector('body').innerHTML;
var data = spt(str);
$form.remove();
$iframe.remove();
callback(data);
});
function spt(str){
//字符串拆成对象
var a = str.indexOf('{');
var b = str.indexOf('}');
var j = {};
var t = [];
var s = str.substring(a+1,b);
s = s.replace(/"/gi,'');
t = s.split(',');
for(var i=0; i<t.length; i++ ){
var tmp = t[i].split(':');
j[tmp[0]] = tmp[1];
};
return j;
};