freeCodeCamp/guide/chinese/html/attributes/href-attribute/index.md

26 lines
641 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Href Attribute
localeTitle: Href属性
---
## Href属性
Href是“超文本引用”的缩写是HTML属性。 href属性主要用于`<a>`标签以指定链接所指向的网页的URL无论是在同一页面的不同部分还是在完全不同的网页上
#### 如何使用
`<a href="URL"></a>`
#### 例子
```html
<a href="https://www.freecodecamp.org">This is an absolute URL</a>
<a href="index.html">This is a relative URL</a>
```
#### 更多信息:
[W3Schools的](https://www.w3schools.com/tags/att_href.asp)
[HTMLElementReference](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a)