HTML DOM alt ÊôÐÔ

¶¨ÒåºÍÓ÷¨

alt ÊôÐÔ¿ÉÉèÖûò·µ»ØÍ¼ÏñÎÞ·¨ÏÔʾʱµÄÌæ´úÎı¾¡£

Óï·¨

imageObject.alt=alternate_text

ʵÀý

ÏÂÃæµÄÀý×Ó½«¸ü¸ÄͼÏñµÄÌæ´úÎı¾£º

<html>
<head>
<script type="text/javascript">
function changeAlt()
  {
  document.getElementById("compman").alt="Man using computer"
  }
function alertAlt()
  {
  alert(document.getElementById("compman").alt)
  }
</script>
</head>
<body>

<img id="compman" src="compman.gif" alt="Computerman" />
<br />
<input type="button" onclick="changeAlt()"
value="Change alt text">
<br /><br />
<input type="button" onclick="alertAlt()" 
value="Alert alt text">

</body>
</html>
VUE