Image longDesc 屬性

定義和用法
longDesc 屬性可設置或返回圖片的 longDesc 屬性值。
longdesc 屬性指定了包含圖像描述的文檔的 URL。
語法
imageObject.longDesc=URL
流覽器支持
所有主要流覽器都支持 longDesc 屬性
實例
實例
返回圖片的 longDesc 屬性值:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>IT研修(xuhuhu.com)</title>
</head>
<body>
<img id="compman" src="compman.gif" longdesc="description.htm" alt="Computerman" width="107" height="98">
<br>
<p>longdesc屬性的值為:
<script>
var x=document.getElementById("compman");
document.write(document.getElementById("compman").longDesc);
</script>
</p>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>IT研修(xuhuhu.com)</title>
</head>
<body>
<img id="compman" src="compman.gif" longdesc="description.htm" alt="Computerman" width="107" height="98">
<br>
<p>longdesc屬性的值為:
<script>
var x=document.getElementById("compman");
document.write(document.getElementById("compman").longDesc);
</script>
</p>
</body>
</html>
