美文网首页
前端选择图片后预览

前端选择图片后预览

作者: 大美宇宙 | 来源:发表于2019-11-08 00:04 被阅读0次

关键点:

img.src = URL.createObjectURL(file.files[0]);

准备一个 #file input[type=file]

var fImg = document.getElementById('file');

fImg.onchange = function(){

var tb = document.querySelector('#tblQRResult');

for(var i = 0 , l = this.files.length;i<l;i++){

addImage(tb,this.files[i]);

}

}

function addImage(tb,imgFile){

var tr = document.createElement('tr'),

td1 = document.createElement('td'),

td2 = document.createElement('td'),

td3 = document.createElement('td'),

img = document.createElement('img'),

s = URL.createObjectURL(imgFile);

img.src = s;

// img.style.height = '120px'

td1.appendChild(img);

tr.appendChild(td1);

tr.appendChild(td2);

tr.appendChild(td3);

tb.appendChild(tr);

}

相关文章

网友评论

      本文标题:前端选择图片后预览

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