h5上传图片
Posted 金牛座的女孩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了h5上传图片相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>h5上传图片</title>
</head>
<body>
<input type="file" name="file" onchange="showPreview(this)" />
<img id="portrait" src="" width="70" height="75">
<script>
// 先判断浏览器对FileReader的支持
/*if(window.FileReader) {
var fr = new FileReader();
// add your code here
}
else {
alert("Not supported by your browser!");
}*/
function showPreview(source) {
var file = source.files[0];
if(window.FileReader) {
var fr = new FileReader();
fr.onloadend = function(e) {
document.getElementById("portrait").src = e.target.result;
};
fr.readAsDataURL(file);
}
}
</script>
</body>
</html>
以上是关于h5上传图片的主要内容,如果未能解决你的问题,请参考以下文章