?? alai_imagelist.js
字號:
/*******************************************************************************
阿賴圖片列表控件程序 由賴國欣設計于2003年6月,保留所有權利!
*********************************************************************************/
function alai_imagelist()
{try{
var item=[]
count=0
this.path=""
this.type="gif"
this.err=""
iml=this
this.copywrite="Copywrite by Alai(賴國欣) (c)2003,All right reserved!"
this.add=function(src,key)
{
var img=new Image()
if(src==null || src=="")return
if(src.indexOf("/")==-1)src=iml.path+src
if(!(/\.gif$|\.jpg$|\.png$|\.bmp$/i).test(src))src+="."+iml.type
if(key==null || key=="")key=src.replace(/(.*\/){0,}([^\.]+).*/ig,"$2")
item[count]=img;img.index=count;item[key]=img;count++;
img.onerror=function()
{
alert("alai_imagelist cause run time error:\nImage file "+img.src+" not found!")
item[img.index]=null;item[key]=null;count--;
}
img.src=src
return img
}
this.item=item
this.count=function(){return count;}
}
catch(e){
iml.err="alai_imagelist cause run time error!\nError number:"+e.number+".\nError description:"+e.description;
iml.err+="\n -- \nYou can send the case and error description message to A@lai.com.cn for support.Please visit http://www.9499.net to get the last release!"
alert(iml.err);
return iml;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -