js上传图片到本地

Posted

tags:

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

参考技术A <FORM method="POST" enctype="multipart/form-data" action="" name="form1">
图片:<img src="" ID="DoImgName1" width="300" height="200"><br>
选择:<INPUT type="file" name="ImgFile1" size="38" OnPropertyChange="dochange1();" value="">
</FORM>

<script language="javascript">
function dochange1()
var thissrc;
thissrc=this.form1.ImgFile1.value;
strs=thissrc.toLowerCase();
lens=strs.length;
extname=strs.substring(lens-4,lens);
if(extname==".jpg" || extname==".gif" || extname==".swf")
document.all.DoImgName1.src=thissrc;


</script>

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 上传图片本地预览缓存

如何在前端用js进行多图片上传

js 预览本地上传图片

kindeditor Js 已知,图片上传的方法,图片的说明,怎么将图片的说明添加到图片的alt里面去

js实现图片上传本地预览