当前位置: 首页 > 图文教程 > 网络编程 > Javascript > 图片上传即时显示缩略图的js代码

Javascript
java编程教程:JDBC技术简介
浅析Ajax为什么优于JSF
JDK5.0中collection都有哪些变化
对性能和可扩展产生深远影响的J2EE
HTTP消息头字段深入介绍
java教程:网站开发中的入侵问题检测
简要介绍实现多线程环形缓冲的方法
DOM文档如何与XML文件互换?
Java教程:如何实现FTP功能
Bing API的简单了解
Javascript对网页输入框的字数限制
建立支持移动设备访问的网站sitemap
window.onload和body onload
JS教程:window.event对象
网页漂浮广告的关闭的实现代码
JavaScript教程:网页浮动定位提示效果
常用的Javascript代码高亮脚本
滑动导航菜单的变体使用
解决AJAX中文回传乱码
Javascript开发是否预留退路?

Javascript 中的 图片上传即时显示缩略图的js代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-12   浏览: 153 ::
收藏到网摘: n/a

主要用于上传图片的过程中可以显示图片,这样就可以确认图片有没有远错,利用提高正确率。
<script language="javascript" type="text/javascript">
var allowExt = ['jpg', 'gif', 'bmp', 'png', 'jpeg'];
var preivew = function(file, container){
try{
var pic = new Picture(file, container);
}catch(e){
alert(e);
}
}
//缩略图类定义
var Picture = function(file, container){
var height = 0,
widht = 0,
ext = '',
size = 0,
name = '',
path = '';
var self = this;
if(file){
name = file.value;
if (window.navigator.userAgent.indexOf("MSIE")>=1){
file.select();
path = document.selection.createRange().text;
}else if(window.navigator.userAgent.indexOf("Firefox")>=1){
if(file.files){
path = file.files.item(0).getAsDataURL();
}else{
path = file.value;
}
}
}else{
throw "bad file";
}

ext = name.substr(name.lastIndexOf("."), name.length);
if(container.tagName.toLowerCase() != 'img'){
throw "container is not a valid img label";
container.visibility = 'hidden';
}
container.src = path;
container.alt = name;
container.style.visibility = 'visible';
height = container.height;
widht = container.widht;
size = container.fileSize;

this.get = function(name){
return self[name];
}
this.isValid = function(){
if(allowExt.indexOf(self.ext) !== -1){
throw 'the ext is not allowed to upload';
return false;
}
}
}
</script>
<div class='previewDemo'>
<input id="file" type="file" onchange="preivew(this, document.getElementById('img'));">
<img id="img" style="visibility:hidden" height="100px" width="100px">
</div>