图片上传后进行查看

//当file改变的时候,将img的src改为修改后的值
    $(".file").change(function(){
        f=document.querySelector('.file').files[0];
        var reads=new FileReader();
        reads.readAsDataURL(f);
        reads.onload=function(e){
            $(".imgs")[0].src=this.result;
        }
    })

//点击button来点击input:file
    $(".btnimg,.btnimg2").eq(0).click(function(){
        $(".file,.file2").click()
    })

css样式:

.file {
    opacity: 0;
   
}
//按钮样式
.btnimg {
    background-color: #288cdd;
    border: none;
    width: 164px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #e7e7e7;
    border-radius: 20px;
    cursor: pointer;
}

 

上一篇:CSS 边框样式


下一篇:【超图+CESIUM】【基础API使用示例】17、超图|CESIUM - 手动设置场景的二三维展示