我已经编写了简单的代码,用户上传了一个img,它编码到base64 ..代码工作正常,但问题是我如何编码代码变量? 这是html代码
<input type='file' id="myimage" />
<div id="encoded"></div>
这是js / jquery Code
$(document).ready(function() {
function readImage() {
if (this.files && this.files[0]) {
var base24 = new FileReader();
base24.onload = function(e) {
$('#encoded').text(e.target.result);
};
base24.readAsDataURL(this.files[0]);
}
}
$("#myimage").change(readImage);
});