好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

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

```      preview image          $('input[type="file"]').change(function(e){        reader = new FileReader();        reader.readAsDataURL(e.target.files[0]);        reader.onload = function(){            $('body').append($(' ', {src: reader.result}));        };    });   ``` 

查看更多关于html上传图片之前在网页预览实现_html/css_WEB-ITnose的详细内容...

  阅读:37次