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

头像文件的预览

时间:2018-10-12 17:49:32      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:inpu   load   nbsp   control   data   加载   change   input   触发事件   

html:

 

<div class="form-control">
<label for="id_avatar1"><img name="image" style="width: 100px; height: 100px;" id="avatar_img" src="/static/img/默认.jpg" ></label>
<input type="file" name="avatar" id="id_avatar1" class="choice_file" style="display: none">
<span class="help-block"></span>
</div>

 

<script  src="/static/jquery-3.1.1.js"></script>

<script>

{###找到当前头像的input标签,绑定change 事件,当这个input的文件有选择的时候,就触发事件#}
$(‘.choice_file‘).change(function () {
console.log(this.files[0])

{#$(‘.choice_file‘).val()#}
{###这个拿到的是一个假的路径C:\fakepath\180px-比尔盖茨.jpg"#}
{####创建一个读取文件的对象#}

{#var FileReader=new FileReader();#}
var file = new FileReader();
{###取到当前选中的头像文件,这个名字什么都可以,不能同名#}
{###读取文件是需要时间的#}
file.readAsDataURL(this.files[0]);

file.onload=function () {
{###把图片加载到img的标签中#}
$(‘#avatar_img‘).attr("src",file.result)
}
})

</script>

头像文件的预览

标签:inpu   load   nbsp   control   data   加载   change   input   触发事件   

原文地址:https://www.cnblogs.com/yunxintryyoubest/p/9779333.html

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