- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>js上传图片--预览图片</title>
- <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
- </head>
- <body>
- <form>
- <input type="file" onChange="preview(this)"/>
- <img src="" id="previewimg" width="50px" height="40px"/>
- </form>
- <script type="text/javascript">
- function preview(obj){
- var img = document.getElementById("previewimg");
- img.src = window.URL.createObjectURL(obj.files[0]);
- }
- </script>
- </body>
- </html>