jQuery上传图片之前可以预览效果

<html>

<head>

<meta charset="utf-8">

<title>jQuery上传图片之前可以预览效果title>

<script src="http://libs.baidu.com/jquery/1.11.3/jquery.min.js">script>

<style>

style>

head>

<body>

<input id="file" ;="" onchange="c()" type="file"><br>

<img src="" id="show" width="200"><script>

function c () {

  var r= new FileReader();

  f=document.getElementById('file').files[0];

   

  r.readAsDataURL(f);

  r.onload=function (e) {

    document.getElementById('show').src=this.result;

  };

}script>

body>

html>

你可能感兴趣的:(jQuery上传图片之前可以预览效果)