图片上传前预览,支持IE各版本、火狐、谷歌浏览器

来源:互联网 发布:杭州淘宝拍摄地点中山 编辑:程序博客网 时间:2024/06/10 07:13

JS函数实现部分

/* * 绑定文件域onchange事件,实现图片上传前预览 IE6-IE10 firefox Chrome * @param fileInputObject Object onchange中传this执行input * @param imgControlsID string image标签id * @return void*/function changePreviewImgSrc(fileInputObject,imgControlsID){if(typeof FileReader === "undefined"){//针对各个版本的IEif(navigator.userAgent.indexOf("MSIE") > 0){document.getElementById("imgControlsID").src = "file:///" + fileInputObject.value;}}else{var reader = new FileReader();reader.readAsDataURL(fileInputObject.files[0]);reader.onload = function(e){document.getElementById("imgControlsID").src = e.target.result;}}}

HTML demo

<input type="file" onchange="changePreviewImgSrc(this,'ff')"/><img id="ff" />

原创粉丝点击