上传时预览图片,纯前端

Html:
点击上传

  

JS:   
function changepic() { $("#prompt3").css("display", "none"); var reads = new FileReader(); f = document.getElementById('file').files[0]; reads.readAsDataURL(f); reads.onload = function(e) { document.getElementById('img3').src = this.result; $("#img3").css("display", "block"); }; }

  转自:  https://blog.csdn.net/qq_41362025/article/details/81427819

转载于:https://www.cnblogs.com/axu92312/p/10997775.html

你可能感兴趣的:(上传时预览图片,纯前端)