最新的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屬性


鏈接對象參考 鏈接對象