我的世界单机破解版:asp 上传图片

来源:百度文库 编辑:杭州交通信息网 时间:2024/05/05 23:42:36
我在做一个论坛,可上传图片的时候,总是不行。
能把图片加到输入框里了,可从库里调出来显示的时候怎么也不行
我用的是function DrawImage(ImgD){
var image=new Image();
image.src="images/showerr.gif";
if(image.width>0 && image.height>0){
flag=true;
if(image.width>=746){
ImgD.width=746;
ImgD.height=(image.height*746)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
}
我觉得是缺参数,哪位大侠用过,救救我吧!我都要疯了!
flag=false
function DrawImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width>=746){
ImgD.width=746;
ImgD.height=(image.height*746)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
}
是这个,上面有一句写错了