Chinaunix首页 | 论坛 | 博客
  • 博客访问: 558620
  • 博文数量: 34
  • 博客积分: 10171
  • 博客等级: 上将
  • 技术积分: 1365
  • 用 户 组: 普通用户
  • 注册时间: 2004-11-09 13:13
文章分类

全部博文(34)

文章存档

2011年(1)

2009年(20)

2008年(13)

我的朋友

分类:

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>

阅读(664) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~