ajax 檔案上傳

來源:互聯網
上載者:User

最近寫了不少別人寫過的東西,哎。

HTML

View Code

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
</head>

<body>
<form id="J_myUploadForm" action="" method="post" enctype="multipart/form-data">
<input type="file" name="fileField" id="fileField" />
</form>
<input type="button" value="ajaxFileUpload" id="btn"/>
<script src="ajaxFileUpload.js"></script>
<script>
var btn = document.getElementById('btn');
btn.onclick = function(){
ajaxFileUpload({
id:'fileField',
callback:function(){
var src = this.responseText;
var img = document.createElement('img');
img.src = src;
document.body.appendChild(img);
}
});
}
</script>
</body>
</html>

PHP

View Code

<?php
move_uploaded_file($_FILES["fileField"]["tmp_name"], "upload/" . $_FILES["fileField"]["name"]);
echo "upload/" . $_FILES["fileField"]["name"];
?>

JS

/*
作者:天涯
QQ:63886829
eMail:flyinksy@gmail.com
說明:ajax檔案上傳
*/
var ajaxFileUpload = function(opts){
return new ajaxFileUpload.prototype.init(opts);
};
ajaxFileUpload.prototype = {
init:function(opts){
var set = this.extend({
url:'result.php',
id:'fileId',
callback:function(){}
},opts || {});
var _this = this;
var id = +new Date();
var form = this.createForm(id),frame = this.createIframe(id,set.url);
var oldFile = document.getElementById(set.id)
var newFile = oldFile.cloneNode(true);
var fileId = 'ajaxFileUploadFile'+id;
oldFile.setAttribute('id',fileId);
oldFile.parentNode.insertBefore(newFile,oldFile);
form.appendChild(oldFile);//注意瀏覽器安全問題,要將原檔案域放到建立的form裡提交
form.setAttribute('target',frame.id);//將form的target設定為iframe,這樣提交後返回的內容就在iframe裡
form.setAttribute('action',set.url);
setTimeout(function(){
form.submit();
if(frame.attachEvent){
frame.attachEvent('onload',function(){_this.uploadCallback(id,set.callback);});
}else{
frame.onload = function(){_this.uploadCallback(id,set.callback);}
}
},100);
},
/*
建立iframe,ie7和6比較蛋疼,得像下面那樣建立,否則會跳轉
*/
createIframe:function(id,url){
var frameId = 'ajaxFileUploadFrame'+id,iFrame;
var IE = /msie ((\d+\.)+\d+)/i.test(navigator.userAgent) ? (document.documentMode || RegExp['\x241']) : false,
url = url || 'javascript:false';
if(IE && IE < 8){
iFrame = document.createElement('<iframe id="' + frameId + '" name="' + frameId + '" />');
iFrame.src = url;
}else{
iFrame = document.createElement('iframe');
this.attr(iFrame,{
'id':frameId,
'name':frameId,
'src':url
});
};
iFrame.style.cssText = 'position:absolute; top:-9999px; left:-9999px';
return document.body.appendChild(iFrame);
},
/*
建立form
*/
createForm:function(id){
var formId = 'ajaxFileUploadForm'+id;
var form = document.createElement('form');
this.attr(form,{
'action':'',
'method':'POST',
'name':formId,
'id':formId,
'enctype':'multipart/form-data',
'encoding':'multipart/form-data'
});
form.style.cssText = 'position:absolute; top:-9999px; left:-9999px';
return document.body.appendChild(form);
},
/*
擷取iframe內容,執行回呼函數,並移除產生的iframe和form
*/
uploadCallback:function(id,callback){
var frame = document.getElementById('ajaxFileUploadFrame'+id),form = document.getElementById('ajaxFileUploadForm'+id);data = {};
var db = document.body;
try{
if(frame.contentWindow){
data.responseText = frame.contentWindow.document.body ? frame.contentWindow.document.body.innerHTML : null;
data.responseXML = frame.contentWindow.document.XMLDocument ? frame.contentWindow.document.XMLDocument : frame.contentWindow.document;
}else{
data.responseText = frame.contentDocument.document.body ? frame.contentDocument.document.body.innerHTML : null;
data.responseXML = frame.contentDocument.document.XMLDocument ? frame.contentDocument.document.XMLDocument : frame.contentDocument.document;
}
}catch(e){};
callback && callback.call(data);
setTimeout(function(){
db.removeChild(frame);
db.removeChild(form);
},100);
},
attr:function(el,attrs){
for(var prop in attrs) el.setAttribute(prop,attrs[prop]);
return el;
},
extend:function(target,source){
for(var prop in source) target[prop] = source[prop];
return target;
}
};
ajaxFileUpload.prototype.init.prototype = ajaxFileUpload.prototype;
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.