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上传图片的主要内容,如果未能解决你的问题,请参考以下文章

H5 图片上传

H5调用本地相册/相机上传图片

华为使用h5上传图片没有gps信息

h5_PC上传图片

h5 端图片上传-模拟多张上传

移动端h5实现拍照上传图片并预览