<!DOCTYPE html>
<html>
<body>
<p>Base 64 string here. You might want to trim.</p>
<input type="file" onchange="previewFile()"><br>
<script>
function previewFile () {
var file = document.querySelector('input[type=file]').files[0];
var reader = new FileReader();
reader.addEventListener('load', function () {
document.querySelector('p').innerHTML=reader.result; // convert file to base64 string using reader.result
}, false);
if (file) {
reader.readAsDataURL(file);
}
}
</script>
</body>
</html>
Комментариев нет:
Отправить комментарий