如圖所示
呢麼咱們來看demo詳情。以下所示: jquery
頁面demo以下所示:web
<img id="photos" src="" width="100" height="100" />
<input id="files" type="file" onchange="chan(this)" name="files" />
js代碼:chrome
<script src="~/Scripts/jquery-1.10.2.js"></script>瀏覽器
//瀏覽圖片
function chan(i) {
var objUrl = getObjectURL(i.files[0]);
if (objUrl) {
$("#photos").attr("src", objUrl); //這裏的id是要顯示圖片位置的Id
}
};
//創建一個可存取到該file的url
function getObjectURL(file) {
var url = null;
// 下面函數執行的效果是同樣的,只是須要針對不一樣的瀏覽器執行不一樣的 js 函數而已
if (window.createObjectURL != undefined) { // basic
url = window.createObjectURL(file);
} else if (window.URL != undefined) { // mozilla(firefox)
url = window.URL.createObjectURL(file);
} else if (window.webkitURL != undefined) { // webkit or chrome
url = window.webkitURL.createObjectURL(file);
}
return url;
} 函數
</script>
this