W3Schools 在线编辑工具(TIY) V3.0
编辑的代码:
运行代码 »
©
w3s.com.cn
运行结果窗口大小:
300 x 150
<
html
>
<
body
>
<
img
id
="compman"
name
="compman"
src
="/i/eg_compman.gif"
alt
="Computerman"
/
>
<
br
/
>
<
script
type
="text/javascript"
>
document.write(
"Image name: "
);
document.write(document.getElementById(
'compman'
).name);
<
/script
>
<
/body
>
<
/html
>
<html> <body> <img id="compman" name="compman" src="/i/eg_compman.gif" alt="Computerman" /> <br /> <script type="text/javascript"> document.write("Image name: "); document.write(document.getElementById('compman').name); </script> </body> </html>