小兔网

Anchor 对象参考手册 Anchor对象

定义和用法

href 属性可设置或返回链接中 href 属性的值。

href 属性指定了被链资源的 URL。

语法

设置 href 属性:

anchorObject.href="https://zhishitu.com/"

返回 href 属性:

anchorObject.href
描述
URL被链资源的 URL

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

实例

实例

返回链接中 href 属性的值:

<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>(zhishitu.com)</title> </head><body> <p><a id="runoob" href="//www.zhishitu.com/"></a></p><script>document.write("返回 href 链接: ");document.write(document.getElementById('runoob').href);</script> </body></html>
知识兔 »

Anchor 对象参考手册 Anchor对象