HTML DOM longDesc 属性
JavaScript基础 2022-06-08 15:57:33小码哥的IT人生shichen
HTML DOM longDesc 属性
定义和用法
longDesc 属性可设置或返回包含图像描述的文档的 URL。
该描述是对 "alt" 属性的补充,可对非可视的用户代理很有用。
语法
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>
TIY
完整实例【创建一个较长的图像描述的链接】:
<html>
<body>
<img id="compman" src="/i/eg_compman.gif" longdesc="/demo/example/hdom/compman_description.html" 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>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html