爱科学的好少年
Digico
全部博文(34)
2011年(1)
2009年(20)
2008年(13)
c9219677
gaojianq
yanxiaom
huyanjie
cyboca
ymc4444
HRSSSS
seventee
irockey
分类:
2009-03-17 11:24:31
<html> <head> <title>取图片尺寸</title> </head> <body> 图像地址 <input name="i" type="file" onchange="img.src=this.value" size="70"> <br> 高<input type="text" name="h"><br> 宽<input type="text" name="w"><br> 大小<input type="text" name="s"><br> <br> <br> <br> <div style="position:absolute;top:;left:0;visibility:"> <img id="img" onload="Show(this)"> </div> <script language="JavaScript"> function Show(oImg) { document.all.h.value=oImg.height; document.all.w.value=oImg.width; document.all.s.value=oImg.fileSize; } </script> </body> </html>
上一篇:调用某接口,读取返回值
下一篇:javascript 判断文件是否存在
登录 注册