最新的Web開發教程
 

位置的href屬性

定位對象參考 Location對象

返回整個URL(當前頁的):

var x = location.href;

x的結果將是:

試一試»

更多“試一試”的例子。


定義和用法

在href屬性設置或返回當前頁面的完整URL。


瀏覽器支持

屬性
href

句法

返回在href屬性:

location.href

設置在href屬性:

location.href= URL

屬性值

Value Type Description
URL String Specifies the URL of the link.

Possible values:

  • An absolute URL - points to another web site (like location.href="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like location.href="default.htm")
  • An anchor URL - points to an anchor within a page (like location.href="#top")
  • A new protocol - specifies a different protocol (like location.href="ftp://someftpserver.com", location.href="mailto:[email protected]" or location.href="file://host/path/example.txt")

技術細節

返回值: 一個字符串,佔整個頁面的URL,包括協議(如http://)

例子

更多示例

設置href值指向另一個網站:

location.href = "http://www.cnn.com";
試一試»

設置href值指向一個頁面中的錨:

location.href = "#top";
試一試»

設置href值指向一個電子郵件地址(會打開並創建一個新的電子郵件):

location.href = "mailto:[email protected]";
試一試»

定位對象參考 Location對象