zoukankan      html  css  js  c++  java
  • js上传图片预览

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <script type="text/javascript" src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
        <script type="text/javascript">
        $(function(){
            $(".file").change(function(){
                var fileImg = $(".fileImg");
                var explorer = navigator.userAgent;
                var imgSrc = $(this)[0].value;
                if (explorer.indexOf('MSIE') >= 0) {
                    if (!/.(jpg|jpeg|png|JPG|PNG|JPEG)$/.test(imgSrc)) {
                        imgSrc = "";
                        fileImg.attr("src","/img/default.png");
                        return false;
                    }else{
                        fileImg.attr("src",imgSrc);
                    }
                }else{
                    if (!/.(jpg|jpeg|png|JPG|PNG|JPEG)$/.test(imgSrc)) {
                        imgSrc = "";
                        fileImg.attr("src","/img/default.png");
                        return false;
                    }else{
                        var file = $(this)[0].files[0];
                        var url = URL.createObjectURL(file);
                        fileImg.attr("src",url);
                    }
                }
            })
        })
        </script>
    </head>
    <body>
        <form enctype="multipart/form-date" method="post">
            <input type="file" class="file">
            <input type="submit" class="sub">
        </form>
        <img src="" class="fileImg">
    </body>
    </html>

    欢迎增加交流群:398918539

  • 相关阅读:
    点双连通分量
    CF 839 E-最大团
    线性基
    CF 859 E
    【bzoj1303】[CQOI2009]中位数图
    【bzoj2282】[Sdoi2011]消防
    【bzoj2654]】tree
    【bzoj2600】 [Ioi2011]ricehub
    【bzoj4027】 [HEOI2015]兔子与樱花
    【bzoj3670】 [Noi2014]动物园
  • 原文地址:https://www.cnblogs.com/lxjshuju/p/6874464.html
Copyright © 2011-2022 走看看