这篇文章主要为大家详细介绍了js 预览待上传的本地图片入门实例,具有一定的参考价值,可以用来参考一下。
js实现预览待上传的本地图片,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
<form name="form5" id="form5" method="post" action="#">
<input type="file" name="file5" id="file5" onchange="preview5()"/>
</form>
<script type="text/javascript">
/**
* 预览待上传的本地图片
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
function preview5(){
var x = document.getElementById("file5");
if(!x || !x.value) return;
var patn = /\.jpg$|\.jpeg$|\.gif$/i;
if(patn.test(x.value)){
var y = document.getElementById("img5");
if(y){
y.src = "file://localhost/" + x.value;
}else{
var img=document.createElement("img"); img.setAttribute("src","file://localhost/"+x.value);
img.setAttribute("width","120");
img.setAttribute("height","90");
img.setAttribute("id","img5");
document.getElementById("form5").appendChild(img);
}
}else{
alert("您选择的不是图像文件。");
}}
</script>
// 来自:四海网(www.q1010.com)
本文来自:http://www.q1010.com/174/473-0.html
注:关于js 预览待上传的本地图片入门实例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:图片
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。