HTML DOM alt 属性

定义和用法

alt 属性可设置或返回当浏览器不支持按钮时要显示的替换文本。

语法

  1. buttonObject.alt=alternate_text

实例

下面的例子可返回按钮的 alt 文本:

  1. <html>
  2. <body>
  3.  
  4. <form>
  5. <input type="button" alt="Button" id="button1"
  6. value="Click me" />
  7. </form>
  8.  
  9. <p>The alt text for the button is:
  10. <script type="text/javascript">
  11. x=document.getElementById('button1');
  12. document.write(x.alt);
  13. </script></p>
  14.  
  15. </body>
  16. </html>