码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript预览图片

时间:2020-07-21 13:37:05      阅读:105      评论:0      收藏:0      [点我收藏+]

标签: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>

 

JavaScript预览图片

标签:document   ima   scale   fileread   col   head   new   cti   selector   

原文地址:https://www.cnblogs.com/coderDemo/p/13353935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!