案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function changeAlt()
5
  {
6
  document.getElementById("compman").alt="Man using computer"
7
  }
8
function alertAlt()
9
  {
10
  alert(document.getElementById("compman").alt)
11
  }
12
</script>
13
</head>
14
<body>
15
16
<img id="compman" src="/img/eg_compman.gif" alt="Computerman" />
17
<br />
18
<input type="button" onclick="changeAlt()" value="Change alt text">
19
<br /><br />
20
<input type="button" onclick="alertAlt()" value="Alert alt text">
21
22
</body>
23
</html>
24