标签:img src image att Enctype type .class val targe
1、html 代码:
<div class="file-box">
<form action="upload.class.php" id="form_id" method="post" enctype="multipart/form-data" >
<input type="file" name="imagename" id="imagename" onblur="getimage(this)" />
<input type="button" class="btn" value="上传" onclick="form_register();" />
</form>
<img id="img_id" />
</div>
2、js代码
function getimage(obj)
{
var pic = obj.files[0];
var freader = new FileReader();
freader.readAsDataURL(pic);
freader.onload = function(e) {
document.getElementById(‘img_id‘).attr("src",e.target.result);
}
}
标签:img src image att Enctype type .class val targe
原文地址:http://www.cnblogs.com/52-hz/p/7170339.html