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

WBOY
發布: 2016-06-21 08:54:19
原創
956 人瀏覽過

```<!DOCTYPE html><html><head><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></head><body><form>    <input type="file"></form><script src="/static/js/jquery.min.js"></script><script>    $('input[type="file"]').change(function(e){        reader = new FileReader();        reader.readAsDataURL(e.target.files[0]);        reader.onload = function(){            $('body').append($('<img  / alt="html上传图片之前在网页预览实现_html/css_WEB-ITnose" >', {src: reader.result}));        };    });</script></body></html>```
登入後複製

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!