举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > htmlcaptionrel属性 HTML DOM Area protocol 属性

htmlcaptionrel属性 HTML DOM Area protocol 属性

2023-04-05 21:18

htmlcaptionrel属性 HTML DOM Area protocol 属性

htmlcaptionrel属性

htmlcaptionrel属性是HTML5中新增的一个属性,它用于指定图片的标题关系。它可以让浏览器在显示图片时,将图片的标题显示出来。

htmlcaptionrel属性可以使用两个值:“caption” 和 “description”。如果使用“caption”,则表示图片的标题是一个概述性的文字;如果使用“description”,则表示图片的标题是一个详细描述性的文字。

<img src="image.jpg" htmlcaptionrel="caption" title="This is a caption"> 
<img src="image.jpg" htmlcaptionrel="description" title="This is a description"> 

htmlcaptionrel属性可以帮助开发者在不同浏览器上正确显示图片标题。例如,在Chrome浏览器中,当使用htmlcaptionrel=“description”时,会在图片上方显示详细描述性文字;而当使用htmlcaptionrel=“caption”时,会在图片下方显示概述性文字。

此外,htmlcaptionrel属性也可以帮助开发者优化SEO效果。通过将title内容作为alt内容来使用htmlcaptionrel属性,可以有效地将图片相关信息告诉搜索引擎。

HTML DOM Area protocol 属性

Area protocol 属性

Area 对象参考手册 Area 对象

定义和用法

protocol 属性可设置或者返回 href属性值的协议部分。

语法

areaObject.protocol=protocol


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 protocol 属性


实例

实例

下面的例子可返回 "Venus" 区域中的协议:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>教程(.cn)</title>
</head>
<body>

<img src="planets.gif" width="145" height="126" usemap="#planetmap">
<map name="planetmap">
<area id="venus" shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
</map>
<p>金星区域的 protocol:
<script>
document.write(document.getElementById('venus').protocol);
</script>
</p>

</body>
</html>

以上实例输出结果:

金星区域的 protocol: http:



Area 对象参考手册 Area 对象
阅读全文
以上是编程学为你收集整理的htmlcaptionrel属性 HTML DOM Area protocol 属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部