|
/*图片上传长宽 *upimg上传文件控件 *showimg显示图片控件 *w上传图片限制的宽 *h上传图片限制的高 */ function imgExceedSize(upfile,w,h,img2){ if(!document.getElementById(upfile).value==""){ var picshow=document.getElementById(img2); if(picshow.width>w || picshow.height>h){ alert("图像尺寸:"+picshow.width+"X"+picshow.height+"。\\图像尺寸过大!你只能上传尺寸为 "+w+"×"+h+"的图像,请重新浏览图片!"); return true; }else{ return false; } }else{ return true; } } /**************图片显示**************/ function imgOnChangShow(upimg,showimg){ var picshow=document.getElementById(upimg); document.getElementById(showimg).src=picshow.value; }
function ShowAndHide(obj) { if(document.getElementById(obj).style.display=="none"){ document.getElementById(obj).style.display="block"; }else{ document.getElementById(obj).style.display="none"; } }
共2页: 上一页 [1] 2 下一页
|