$(function(){$('#img').c..." />
html5图片上传预览示例分享
html5图片上传预览示例分享
发布时间:2016-12-27 来源:查字典编辑
摘要:HTML5图片上传预览http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.mi...

<!DOCTYPE html>

<html lang="zh-cn">

<head>

<meta charset="utf-8" />

<meta name="author" content="EdieLei" />

<title>HTML5 图片上传预览</title>

<script type="text/javascript" src="<a href="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script">http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script</a>>

<script type="text/javascript">

$(function(){

$('#img').change(function(){

var file = this.files[0]; //选择上传的文件

var r = new FileReader();

r.readAsDataURL(file); //Base64

$(r).load(function(){

$('div').html('<img src="'+ this.result +'" alt="" />');

});

});

});

</script>

</head>

<body>

<h3>HTML5 图片上传预览</h3>

<input id="img" type="file" accept="image/*" />

<div></div>

</body>

</html>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新HTML5教程学习
热门HTML5教程学习
网页设计子分类