上传图片
Posted quitpoison
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传图片相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>上传图片</title> <style> .imgC{ width: 200px; height: 200px; } </style> </head> <body> <input type="file" > <img src="" alt="" class="imgC"> <script> //页面中上传一个图片,把图片显示在页面中 //获取上传的文件的元素 var fli = document.querySelector("input"); fli.onchange=function(){ //创建读取文件的对象 var fReader = new FileReader(); //读取文件 ----图片 fReader.readAsDataURL(fli.files[0]); //图片读取的加载的过程 fReader.onload=function(){ console.log(this); //显示图片 document.querySelector("img").src=this.result; } } </script> </body> </html>
以上是关于上传图片的主要内容,如果未能解决你的问题,请参考以下文章