码迷,mamicode.com
首页 > Web开发 > 详细

js 上传图片本地预览缓存

时间:2017-07-14 00:31:51      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:lock   function   files   jquer   review   width   pre   utf-8   har   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>文件上传</title>
<script src="jQuery.js"></script>
<style type="text/css">
#file{
display: block;
width: 400px;
height: 300px;
opacity:0;
margin: -300px 0 0 0;
}
#preview{
display: block;
width: 400px;
height: 300px;
}
</style>
</head>
<body>
<img id="preview" src="" alt="点击上传图片"/>
<input type="file" id="file" />
</body>
</html>
<script type="text/javascript">
$(‘#file‘).on(‘change‘, function(){
//获取文件列表对象
var fileList = $(‘#file‘)[0].files;
//创建文件流获取文件地址
var src = URL.createObjectURL(fileList[0]);
//设置图片路径
$("#preview").attr("src", src);
});
</script>

js 上传图片本地预览缓存

标签:lock   function   files   jquer   review   width   pre   utf-8   har   

原文地址:http://www.cnblogs.com/xuanwang/p/7163831.html

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