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

jquery上传图片在前端显示

时间:2018-08-08 13:54:34      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:mil   开始   style   function   nload   span   load   this   file   

$("#id_avatar").change(function () {  
var reader = new FileReader();
reader.readAsDataURL(this.files[0]);
reader.onload = function () { #等待图片加载完成后开始上传
$("#avatar-img").attr("src",this.result)
}
});

jquery上传图片在前端显示

标签:mil   开始   style   function   nload   span   load   this   file   

原文地址:https://www.cnblogs.com/louzi/p/9442064.html

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