- div id=id=id 樣式=「寬度:800 像素;高度:400 像素;邊框:1 像素實心;」 🎜>內容可編輯="true">div>
-
腳本 類型=類型 " src="require.js"> 腳本>
-
腳本>
- require(['UploadImage'], 函數 (UploadImage) {
- new UploadImage("box", "UploadHandler.ashx").upload(function (xhr) {//上傳完成後的回呼
-
var img = 新
-
img.src = xhr.
this.appendChild(img);
- });
- })
-
腳本>
三.瀏覽器支援
目前版本只支援以下,瀏覽器,升級可能會支援更多瀏覽器。
•IE11 •Chrome •FireFox
•Safari(未測式,理論應支持)
四.原理及源碼
1 .貼上上傳處理目標容器(id)的paste事件,讀取e.clipboardData中的數據,如果是圖片進行以下處理:
用H5 File API(FileReader)獲取文件的base64代碼,並建構FormData異步上傳。
2.拖曳上傳
處理目標容器(id)的drop事件,讀取e.dataTransfer.files(H5 File API: FileList)中的數據,如果是圖片並建立FormData異步上傳。
以下是初步版本程式碼,比較簡單。不再贅述。 部分核心程式碼
XML/HTML 程式碼
將內容複製到剪貼簿
- function UploadImage(id, url, key)
- {
-
this.element = document.getElementById(id));
-
this.url = url; //後端處理圖片的路徑
-
this.imgKey = key "PasteAreaI>key 🎜>
- }
-
UploadImage.prototype.paste = function{
- var thatthat
- = this;
this.element.addEventListener('paste', function (e) {//處理目標容器(id)的paste事件
if (e.clipboardData && e.clipboardData.items[0].type.indexOf('image')
- >
- 🎜>
var that =
- this, this, this, J
-
reader = new FileReader();
file-
= e.clipboardData.items[0].getAsFile();//讀取e.clipboardData 🎜>
reader.onload
= -
🎜>
var xhr = new
- XMLHttpRequest(), >
fd = formData || (newo>Datao());;
- xhr.open('POST', thatthat.url, true);
xhr.onload = function
- () { >
callback.call(that, xhr);
-
}
fd.append(thatthat.imgKey, this.result); // this.result得到圖片的base64
xhr.send(fd);
-
}
-
reader.readAsDataURL(file);//取得base64編碼
-
}
-
}, false);
-
}
-
-