圖片上傳即時顯示縮略圖的js代碼
更新時間:2009年05月27日 14:39:48 作者:
主要用于上傳圖片的過程中可以顯示圖片,這樣就可以確認圖片有沒有遠錯,利用提高正確率。
<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>
相關(guān)文章
javascript預(yù)覽上傳圖片發(fā)現(xiàn)的問題的解決方法
前段時間做一個行業(yè)站點,其中商鋪有一塊功能是商鋪設(shè)置功能,要求是進行版式,企業(yè)名稱,企業(yè)頭部LOGO,企業(yè)頭部背景進行自定義設(shè)置。2010-11-11
javascript橢圓旋轉(zhuǎn)相冊實現(xiàn)代碼
支持自動和手動兩種模式:自動模式下自動旋轉(zhuǎn)展示,手動模式下通過鼠標選擇當前圖片,或通過提供的接口選擇上一張/下一張圖片2012-01-01
js與自動伸縮圖片 自動縮小圖片的多瀏覽器兼容的方法總結(jié)
js與自動伸縮圖片 自動縮小圖片的多瀏覽器兼容的方法總結(jié)...2007-03-03

