最新的Web开发教程
 

链接的href属性

链接对象参考 链接对象

返回链接文档的URL:

var x = document.getElementById("myLink").href;

x的结果将是:

http://www.w3ii.com/jsref/styles.css
试一试»

定义和用法

在href属性设置或返回一个链接的文档的URL。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

在href属性在所有主流浏览器的支持。


句法

返回在href属性:

linkObject .href

设置在href属性:

linkObject .href=URL

属性值

Value Description
URL Specifies the URL of the linked resource/document

Possible values:
  • An absolute URL - points to another web site (like href="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like href="default.htm")

技术细节

返回值: 一个String,表示链接的文档的URL。 返回整个URL,包括协议(如http://)

更多示例

更改样式表:

document.getElementById("myLink").href = "style2.css";
试一试»

相关页面

HTML参考: HTML <link> href属性


链接对象参考 链接对象