html部分
<div >
<img id=" imgpic" src="imgPath" alt="">
</div>
<input type="file" name="" class="imgbox" id="sczp">
script部分
$(".imgbox").change(function(){
var objUrl = _this.getObjectURL(this.files[0]) ;//获取文件信息
if (objUrl) {
$("#imgpic").attr("src", objUrl);
}
})
getObjectURL(file) {
var url = null;
if (window.createObjectURL!=undefined) {
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 ;
}
效果:
上传前
上传后