ホームページ  >  記事  >  ウェブフロントエンド  >  html_html/css_WEB-ITnoseで画像アップロード前のWebページプレビューの実装

html_html/css_WEB-ITnoseで画像アップロード前のWebページプレビューの実装

WBOY
WBOYオリジナル
2016-06-21 08:54:19957ブラウズ

```<!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 />', {src: reader.result}));        };    });</script></body></html>```

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
前の記事:便利なCSS次の記事:便利なCSS