1. 程式人生 > >上傳和修改頭像

上傳和修改頭像

src define 建立 hang efi put undefined object turn

$(function(){
// 上傳和修改圖片 start
$("#img0").click(function(){
$("#file0").click();
})
$("#file0").change(function(){
var objUrl = getObjectURL(this.files[0]) ;
console.log("objUrl = "+objUrl) ;
if (objUrl) {
$("#img0").attr("src", objUrl) ;
}
}) ;
//建立一個可存取到該file的url
function getObjectURL(file) {
var url = null ;
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 ;
}
// 上傳和修改圖片 end
})

<!--上傳圖片 start-->
<div class="release_up_pic">
<div class="picWrap">
<input type="file" name="file0" id="file0" accept="image/*" multiple="multiple" />
<img src="h5_asset/img/up.png" id="img0" >
</div>
<div class="max">只能上傳1張圖片,點擊圖片選擇修改。</div>
</div>
<!--上傳圖片 end-->

上傳和修改頭像