HTML DOM alt 属性

定义和用法

alt 属性可设置或返回图像无法显示时的替代文本。

语法

  1. imageObject.alt=alternate_text

实例

下面的例子将更改图像的替代文本:

  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="compman.gif" alt="Computerman" />
  17. <br />
  18. <input type="button" onclick="changeAlt()"
  19. value="Change alt text">
  20. <br /><br />
  21. <input type="button" onclick="alertAlt()"
  22. value="Alert alt text">
  23.  
  24. </body>
  25. </html>