下面有更多 "亲自试一试" 示例。
这个<a>
标签定义了一个超链接,用于从一个页面链接到另一个页面。
最重要的属性是<a>
元素是 href
属性,指示链接的目的地。
默认情况下,链接在所有浏览器中都会显示如下:
提示:如果<a>
标签没有 href
属性,它只是超链接的占位符。
提示:链接页面通常显示在当前浏览器窗口中,除非您指定另一个目标。
提示:使用 CSS 设置链接样式:CSS 链接和CSS 按钮。
Element | |||||
---|---|---|---|---|---|
<a> | Yes | Yes | Yes | Yes | Yes |
Attribute | Value | Description |
---|---|---|
download | filename | Specifies that the target will be downloaded when a user clicks on the hyperlink |
href | URL | Specifies the URL of the page the link goes to |
hreflang | language_code | Specifies the language of the linked document |
media | media_query | Specifies what media/device the linked document is optimized for |
ping | list_of_URLs | Specifies a space-separated list of URLs to which, when the link is followed, post requests with the body ping will be sent by the browser (in the background). Typically used for tracking. |
referrerpolicy | no-referrer no-referrer-when-downgrade origin origin-when-cross-origin same-origin strict-origin-when-cross-origin unsafe-url |
Specifies which referrer information to send with the link |
rel | alternate author bookmark external help license next nofollow noreferrer noopener prev search tag |
Specifies the relationship between the current document and the linked document |
target | _blank _parent _self _top |
Specifies where to open the linked document |
type | media_type | Specifies the media type of the linked document |
这个<a>
标签还支持HTML 中的全局属性。
这个<a>
标签还支持HTML 中的事件属性。
如何使用图片作为链接:
<a href="https://www.91xjr.com">
<img border="0" alt="91xjr" src="logo_w3s.gif" width="100" height="100">
</a>
亲自试一试 »
HTML 教程:HTML 链接
HTML DOM 参考:锚定对象
CSS 教程:样式链接
大多数浏览器都会显示<a>
具有以下默认值的元素:
a:link, a:visited {
color: (
internal value);
text-decoration: underline;
cursor: auto;
}
a:link:active, a:visited:active {
color: (
internal value);
}
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!