HTML DOM longDesc ÊôÐÔ

¶¨ÒåºÍÓ÷¨

longDesc¡¡ÊôÐÔ¿ÉÉèÖûò·µ»Ø°üº¬Í¼ÏñÃèÊöµÄÎĵµµÄ URL¡£

¸ÃÃèÊöÊÇ¶Ô "alt" ÊôÐԵIJ¹³ä£¬¿É¶Ô·Ç¿ÉÊÓµÄÓû§´úÀíºÜÓÐÓá£

Óï·¨

imageObject.longDesc=URL

ʵÀý

ÏÂÃæµÄÀý×Ó½«´´½¨Ò»¸öÖ¸ÏòͼÏñÃèÊöµÄÁ´½Ó£º

<html>
<body>
<img id="compman" src="compman.gif"
longdesc="compman_description.htm" alt="Computerman" />
<br />

<script type="text/javascript">
var x=document.getElementById("compman");
document.write("Description for image: ");
document.write('<a href="' + x.longDesc + '">Description</a>');
</script>

</body>
</html>
VUE