AI编程助手
AI免费问答

html上传图片之前在网页预览实现_html/css_WEB-ITnose

  2016-06-21 08:54   1094浏览 原创
```<meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"><title>preview image</title>
<script> $('input[type="file"]').change(function(e){ reader = new FileReader(); reader.readAsDataURL(e.target.files[0]); reader.onload = function(){ $('body').append($('@@##@@', {src: reader.result})); }; });</script>```

前端入门到VUE实战笔记:立即学习
>在学习笔记中,你将探索 前端 的入门与实战技巧!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。