上传单张图片并回显预览图

上传单张图片并回显预览图

网站上录入个人信息、添加商品时通常都会涉及上传图片,上传之后马上就可以预览图片,用户体验非常棒

<script type="text/javascript">
var dragImgUpload = new DragImgUpload("#drop_area",{
 callback:function (files) {
  //回调函数,可以传递给后台等等
  var file = files[0];
  console.log(file.name);
 }
})
</script>

预览地址:http://www.jquery66.com/demos/js/j20194101/index.html
下载地址:https://u18725144.ctfile.com/fs/18725144-357933579

猜你喜欢

转载自blog.51cto.com/14168515/2372439