上传图片
Posted tuziling
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传图片相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <form> 文件: <input type="file" id="myFile" name =‘myfile‘ onchange="getFileContent();"> <br> <input type="submit"> </form> <img src="" alt=""> <script> function getFileContent(){ var reader = new FileReader(); var file = document.querySelector(‘#myFile‘).files; console.log(file); reader.readAsDataURL(file[0]) reader.onload = function(){ console.log(123); document.querySelector(‘img‘).src = reader.result } } </script> </body> </html>
以上是关于上传图片的主要内容,如果未能解决你的问题,请参考以下文章