上传照片并显示

上传一张照片并显示

<html>
<head>
	<meta charset="utf-8"/>
</head>
<body>
	<div style="border:2px dashed red;">
            <p>
                <input type="file" id="xdaTanFileImg" onchange="xmTanUploadImg(this)" accept="image/*"/>
            </p>
            <img id="xmTanImg"/>
			<img 
        </div>
        <hr />
        <script type="text/javascript">            
            //判断浏览器是否支持FileReader接口
            if (typeof FileReader == 'undefined') {
                document.getElementById("xmTanDiv").InnerHTML = "<h1>当前浏览器不支持FileReader接口</h1>";
                //使选择控件不可操作
                document.getElementById("xdaTanFileImg").setAttribute("disabled", "disabled");
            }

            //选择图片,马上预览
            function xmTanUploadImg(obj) {
                var file = obj.files[0];
                
                console.log(obj);console.log(file);
                console.log("file.size = " + file.size);  //file.size 单位为byte

                var reader = new FileReader();

                //读取文件过程方法
                reader.onloadstart = function (e) {
                    console.log("开始读取....");
                }
                reader.onprogress = function (e) {
                    console.log("正在读取中....");
                }
                reader.onabort = function (e) {
                    console.log("中断读取....");
                }
                reader.onerror = function (e) {
                    console.log("读取异常....");
                }
                reader.onload = function (e) {
                    console.log("成功读取....");

                    var img = document.getElementById("xmTanImg");
					img.width = 300;
					img.height = 250;
                    img.src = e.target.result;
					
                    //或者 img.src = this.result;  //e.target == this
                }

                reader.readAsDataURL(file)
            }
        </script>
</body>

可以使用表格显示多张图片

<html>
<head>
	<meta charset="utf-8"/>
</head>
<body>
	<style>
		img{
			width:300px;
			max-width:100%;
			height:auto;
		}
	</style>
	<div style="border:2px dashed red;">
			
            <table border="1">
			<tr>
			<td>
				<p>
					<input type="file" id="file0" onchange="xmTanUploadImg(this)" accept="image/*"/></br>
					<img id="xmTanImg_file0"/>
				</p>
			</td>
			<td>
				<p>
					<input type="file"  id="file1" onchange="xmTanUploadImg(this)" accept="image/*"/></br>
					<img id="xmTanImg_file1"/>
				</p>
			</td>
			<td>
				<p>
					<input type="file"  id="file2" onchange="xmTanUploadImg(this)" accept="image/*"/></br>
					<img id="xmTanImg_file2"/>
				</p>
			</td>
			</tr>
			<tr>
			<td>
				<p>
					<input type="file"  id="file3" onchange="xmTanUploadImg(this)" accept="image/*"/></br>
					<img id="xmTanImg_file3"/>
				</p>
			</td>
			<td>
				<p>
					<input type="file"  id="file4" onchange="xmTanUploadImg(this)" accept="image/*"/></br>
					<img id="xmTanImg_file4"/>
					
				</p>
			</td>
			<td>
				<p>
					<input type="file"  id="file5" onchange="xmTanUploadImg(this)" accept="image/*"/><br>
					<img id="xmTanImg_file5"/>
				</p>
			</td>
			</tr>
			</table>
            
            
            
			
        </div>
        <hr />
        <script type="text/javascript">            
            //判断浏览器是否支持FileReader接口
            if (typeof FileReader == 'undefined') {
                document.getElementById("xmTanDiv").InnerHTML = "<h1>当前浏览器不支持FileReader接口</h1>";
                //使选择控件不可操作
                this.setAttribute("disabled", "disabled");
            }

            //选择图片,马上预览
            function xmTanUploadImg(obj) {
                var file = obj.files[0];
                console.log(obj);console.log(file);
                console.log("file.size = " + file.size);  //file.size 单位为byte

                var reader = new FileReader();

                //读取文件过程方法
                reader.onloadstart = function (e) {
                    console.log("开始读取....");
                }
                reader.onprogress = function (e) {
                    console.log("正在读取中....");
                }
                reader.onabort = function (e) {
                    console.log("中断读取....");
                }
                reader.onerror = function (e) {
                    console.log("读取异常....");
                }
                reader.onload = function (e) {
                    console.log("成功读取....");
                    var img = document.getElementById("xmTanImg_" + obj.id);
                    img.src = e.target.result;
					
                    //或者 img.src = this.result;  //e.target == this
                }

                reader.readAsDataURL(file)
            }
        </script>
</body>



posted @ 2017-09-24 08:32  开往春天的拖拉机  阅读(124)  评论(0编辑  收藏  举报