案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
<img id="compman" src="/img/eg_compman.gif" alt="Computerman" />
4
<br />
5
6
<script type="text/javascript">
7
x=document.getElementsByTagName('img')[0];
8
document.write("Image id: " + x.id);
9
document.write("<br />");
10
document.write("An alternate way: ");
11
document.write(document.getElementById('compman').id);
12
</script>
13
14
</body>
15
</html>
16