美文网首页
上传图片预览功能实现

上传图片预览功能实现

作者: 鹿啦啦zz | 来源:发表于2019-07-07 11:48 被阅读0次

原文

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>Blob</title>
    <style>
        img{
            width: 256px;
        }
    </style>
</head>
<body>
<input type="file" id="upload">
<div><img id="img" src="" alt="图片预览"></div>
<script>
    const upload=document.querySelector("#upload")
    const img=document.querySelector("img")
    upload.onchange=function () {
        const file=upload.files[0];
        const src=URL.createObjectURL(file)
        img.src=src;
    }
</script>
</body>
</html>

上传图片之后获取到图片file对象,创建一个指向这个图片文件对象的链接,把图片地址指向这个链接就可以了

相关文章

网友评论

      本文标题:上传图片预览功能实现

      本文链接:https://www.haomeiwen.com/subject/qxdbhctx.html