js 上传图片本地预览缓存

Posted _xuanwang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 上传图片本地预览缓存相关的知识,希望对你有一定的参考价值。

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

js实现图片上传本地预览

JS兼容各个浏览器的本地图片上传即时预览效果

web 图片上传实现本地预览

jquery实现图片上传前本地预览

本地多个图片上传预览,删除

js上传图片到本地