HTML <frame> 标签的 longdesc 属性 详解
HTML基础 2023-07-12 16:04:36小码哥的IT人生shichen
HTML <frame> 标签的 longdesc 属性
实例
longdesc 属性指向了带有框架内容长描述的页面:
<html>
<frameset cols="50%,50%">
<frame src="frame_a.htm" longdesc="phpcodeweb.txt" />
<frame src="frame_b.htm" />
</frameset>
</html>
完整实例【亲自试一试】:
<html>
<frameset cols="50%,50%">
<frame src="/demo/example/html/frame_a.html" longdesc="phpcodeweb.txt" />
<frame src="/demo/example/html/frame_b.html" />
</frameset>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
longdesc 属性规定指向一个页面的 URL,该页面包含有关框架内容的长描述。
由于浏览器对 longdesc 属性的支持性非常差,没有必要使用该属性。
提示:如需为某个 frame 提供长描述(如果有必要的话),只要简单地创建一个指向描述页面的链接即可(该链接对任何人都是可见的)。
语法
<frame longdesc="value">
属性值
值 | 描述 |
---|---|
URL |
规定框架的内容描述页面的 URL。 可能的值:
|