标签:change put this logs url 读取 上传图片 ada new
<input type="file" name="img-up" id="img-up" value="" />
$("#img-up").on("change",function () {
if(this.files[0]){
getImgBase64Data(this.files[0], function (result) {
console.log(result);
});
}
});
function getImgBase64Data(file, callback) {
var reader = new FileReader();
reader.onload = function (e) {
callback(e.target.result);
};
reader.readAsDataURL(file); // 读取完后会调用onload方法
}
标签:change put this logs url 读取 上传图片 ada new
原文地址:http://www.cnblogs.com/muamaker/p/6758219.html