首页 > Web开发 > 详细

页面实现上传前预览

时间:2016-09-26 17:50:39      阅读:142      评论:0      收藏:0      [点我收藏+]

<!DOCTYPE html>
<%@ page language="java" pageEncoding="utf-8"%>
<html>
<head>
<title>MyHtml.html</title>
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
<script src="jquery.js" type="text/javascript"></script>
</head>

<body>
<form action="./test" method="get" enctype ="multipart/form-data">
<input type="text" name="name" value=""/><br/>
<input type="file" id="path" name="file" />
<fieldset style="width:80px;height:80px">
<legend>预览</legend>
<img id="imge" width="50px" height="50px" style="visibility:hidden" />
</fieldset>
<input type="submit" value="submit"/>
</form>
</body>
<script type="text/javascript">
$("#path").change(function(e){
var reader = new FileReader();
var file = this.files[0];
reader.onloadstart = function (e) {};
reader.onprogress = function (e) {};
reader.onabort = function (e) {};
reader.onerror = function (e) {};
reader.onload = function (e) {
$("#imge").attr("style","visibility:visible");
$("#imge").attr("src", e.target.result);
};

reader.readAsDataURL(file);
});
</script>
</html>

页面实现上传前预览

原文:http://www.cnblogs.com/wbjgogogo/p/5909866.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!