|
5207
- 皇帝
- 1983-12-1
- 1570
- 2048
- 93
- 3965.8 M
|
发表者
t
T
发表于 2007-08-13 15:46
|只看楼主
- <html>
- <head>
- </head>
- <script language=javascript>
- function DoChange(file, img)
- {
- img.src = file.value;
- }
- </script>
- <body>
- <form id='form1' action=''>
- <input id='file1' type=file onchange='DoChange(file1, img1)' value='' />
- <img id='img1' name='img1' />
- </form>
- </body>
- </html>
复制代码
|