目录

HTML DOM a 对象


锚定对象

Anchor 对象代表一个 HTML <a> 元素。

访问锚点对象

您可以使用 getElementById() 访问 <a> 元素:

示例

const element = document.getElementById("myAnchor");
亲自试一试 »

创建锚点对象

您可以使用 document.createElement() 方法创建 <a> 元素:

示例

const element = document.createElement("a");
亲自试一试 »


锚点对象属性

Property Description
charset Not supported in HTML5.
Sets or returns the value of the charset attribute of a link
download Sets or returns the value of the download attribute of a link
hash Sets or returns the anchor part of the href attribute value
host Sets or returns the hostname and port part of the href attribute value
hostname Sets or returns the hostname part of the href attribute value
href Sets or returns the value of the href attribute of a link
hreflang Sets or returns the value of the hreflang attribute of a link
origin Returns the protocol, hostname and port part of the href attribute value
name Not supported in HTML5. Use element.id instead.
Sets or returns the value of the name attribute of a link
password Sets or returns the password part of the href attribute value
pathname Sets or returns the pathname part of the href attribute value
port Sets or returns the port part of the href attribute value
protocol Sets or returns the protocol part of the href attribute value
rel Sets or returns the value of the rel attribute of a link
rev Not supported in HTML5.
Sets or returns the value of the rev attribute of a link
search Sets or returns the querystring part of the href attribute value
target Sets or returns the value of the target attribute of a link
text Sets or returns the text content of a link
type Sets or returns the value of the type attribute of a link
username Sets or returns the username part of the href attribute value

标准属性和事件

Anchor对象也支持标准特性事件


相关页面

HTML 教程:HTML 链接

HTML 参考:HTML <a> 标签