当前位置 : 主页 > 网页制作 > html >

html上传图片的预览功能实现

来源:互联网 收集:自由互联 发布时间:2021-06-12
表单代码(仅取上传文件部分): input class ="selectImg" style ="position:absolute;opacity: 0;width:100px;height:100px;" type ="file" name ="coverChart" onchange ="showImg(this)" js代码: // 图片预览 function showImg(ob

表单代码(仅取上传文件部分):

<input class="selectImg" style="position:absolute;opacity: 0;width:100px;height:100px;" type="file" name="coverChart" onchange="showImg(this)">

 

js代码:

// 图片预览
function showImg(obj) {
    $(".doShow").css("background-image", "url(‘" + getObjectURL(obj.files[0]) + "‘)");
}

// 不同浏览器获得图片url
function getObjectURL(file) {
    var url = null;
    if (window.createObjectURL != undefined) {
        url = window.createObjectURL(file) ;
    } else if (window.URL != undefined) {
        url = window.URL.createObjectURL(file) ;
    } else if (window.webkitURL != undefined) {
        url = window.webkitURL.createObjectURL(file) ;
    }
    return url;
}

 

参考链接:https://blog.csdn.net/man_zuo/article/details/83115212

网友评论