<a>
优质
小牛编辑
124浏览
2023-12-01
描述 (Description)
HTML 标签用于创建指向另一个文档或当前文档中某个位置的超链接。
例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML a Tag</title>
</head>
<body>
<p>This is a link to <a href = "http://www.amrood.com">AMROOD.com</a></p>
</body>
</html>
全局属性 (Global Attributes)
此标记支持HTML Attribute Reference描述的所有全局属性
具体属性 (Specific Attributes)
HTML 标签还支持以下附加属性 -
属性 | 值 | 描述 |
---|---|---|
charset | character_encoding | 定义链接文档的字符编码。 |
coords | 如果shape =“rect”则coords =“left,top,right,bottom” 如果shape =“circ”则coords =“centerx,centery,radius” 如果shape =“poly”则coords =“x1,y1,x2,y2,..,xn,yn” | 指定适合shape属性的坐标,以定义图像映射的图像区域。 |
下载 | filename | 这会在用户单击超链接时下载目标。 |
href | URL | 指定页面的URL或链接所指向的锚的名称。 |
hreflang | language_code | 目标网址的语言代码。 |
媒体 | media_query | 它指定链接文档的优化媒体 |
name | 部分名称 | 标记链接跳转到的页面区域。 |
rel | alternate designates stylesheet start next prev contents index glossary copyright chapter section subsection appendix help bookmark | 描述当前文档与目标URI之间的关系。 |
rev | alternate designates stylesheet start next prev contents index glossary copyright chapter section subsection appendix help bookmark | 指定目标URL与当前文档之间的关系。 |
shape | rect rectangle circ circle poly polygon | 指定图像映射的形状 |
target | _blank _parent _self _top | 在哪里打开目标URL。 _blank - 目标网址将在新窗口中打开。 _self - 目标URL将在单击的框架中打开。 _parent - 目标URL将在父框架集中打开。 _top - 目标网址将在整个窗体中打开。 |
类型 | mime_type | 指定目标URL的MIME(多用途Internet邮件扩展)类型 |
事件属性 (Event Attributes)
此标记支持HTML Events Reference中描述的所有事件属性
浏览器支持 (Browser Support)
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |