标签:document ima scale fileread col head new cti selector
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>图片本地预览示例</title> </head> <body> <h3>图片本地预览示例</h3> <input type="file" accept="image/*" onchange="loadFile(event)" /> <img id="previewContainer" src="" /> <script> const output = document.querySelector("#previewContainer"); const loadFile = function (event) { const reader = new FileReader(); reader.onload = function () { console.log(reader); output.src = reader.result; }; reader.readAsDataURL(event.target.files[0]); }; </script> </body> </html>
标签:document ima scale fileread col head new cti selector
原文地址:https://www.cnblogs.com/coderDemo/p/13353935.html