图片转base64上传,视频同理。

body:

<input type="file" id="img" type="file" onchange="up()" style="width: 100%;height: 100%;position:absolute ;top: 0;left:0;opacity: 0;">

js:

imgData='';
   
  code=26;
 

function up(){

  var img=document.getElementById('img');
  var imgFile = new FileReader();
  imgFile.readAsDataURL(img.files[0]);
  imgFile.onload = function () {
  imgData = this.result; //base64数据
  // imgShow.setAttribute('src', imgData);
  // conte.value = imgData;
  if(imgData){
  zp='1'
  //$api.dom('#xzzp').setAttribute("src",ret.base64Data)
  document.getElementById('xzzp').setAttribute("src",imgData)
  }
   
  }
   
   
 

}

 

 

 

 

 

posted on 2018-03-23 10:54  Just丶随心  阅读(326)  评论(0编辑  收藏  举报

导航