6.上传前图片预览
2021-06-22 12:04
标签:img src image att Enctype type .class val targe 1、html 代码: 2、js代码 function getimage(obj) } 6.上传前图片预览 标签:img src image att Enctype type .class val targe 原文地址:http://www.cnblogs.com/52-hz/p/7170339.html
{
var pic = obj.files[0];
var freader = new FileReader();
freader.readAsDataURL(pic);
freader.onload = function(e) {
document.getElementById(‘img_id‘).attr("src",e.target.result);
}