JS图片上传显示缩略图(Chrome)

图片上传显示缩略图

  • 只测试Chrome(版本 58.0.3029.81 (64-bit))

HTML

    
    

JS


vue中选择图片显示



 ShowImage(event) {
  // 获取文件
  const file = event.target.files[0];
  // 设置stc 路径
  const Img = document.getElementById('img');
  Img.src = window.URL.createObjectURL(file);
},

你可能感兴趣的:(JS图片上传显示缩略图(Chrome))