码迷,mamicode.com
首页 > 其他好文 > 详细

H5图片预览功能

时间:2017-12-05 11:54:26      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:title   res   change   back   end   content   gb2312   data   hang   

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>js图片预览功能</title>
<script language=javascript>
function previewFile() {
 var preview = document.querySelector(img);
 var file  = document.querySelector(input[type=file]).files[0];
 var reader = new FileReader();
 reader.onloadend = function () {
  preview.src = reader.result;
 }
 if (file) {
  reader.readAsDataURL(file);
 } else {
  preview.src = "";
 }
}
</script>
</head>
<body>
<input type="file" onchange="previewFile()"><br>
<img src="" height="200" width="300" alt="Image preview..."/>
</body>
</html>

 

H5图片预览功能

标签:title   res   change   back   end   content   gb2312   data   hang   

原文地址:http://www.cnblogs.com/whboxl/p/7985622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!