Posted in Javascript onJuly 07, 2008
如果不支持网页对话框就再新窗口打开
目的: 图片自动缩小 点击放大
输入: 无
返回: 无
function $(obj){
return document.getElementById(obj);
}
function ResizeImage(objImage,maxWidth) {
try{
if(maxWidth>0){
var objImg = $(objImage);
if(objImg.width()>maxWidth){
objImg.width(maxWidth).css("cursor","pointer").click(function(){
try{showModelessDialog(objImage.src);}catch(e){window.open(objImage.src);}
});
}
}
}catch(e){};
}
图片自动缩小 点击放大
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@