目录

window location.href

示例

获取当前页面的URL:

let url = location.href;
亲自试一试 »

设置当前页面的URL:

location.href = "https://www.91xjr.com";
亲自试一试 »

下面有更多示例。


描述

这个location.href属性设置或返回当前页面的完整 URL。


语法

返回 href 属性:

location.href

设置 href 属性:

location.href = URL

适当的值

Parameter Description
URL An absolute URL like:
http://www.example.com/default.htm

A relative URL like
default.htm

An anchor URL like
location.href="#top"

A new protocol like:
ftp://someftpserver.com
mailto:someone@example.com
file://host/path/example.txt

返回值

类型 描述
一个字符串 页面的完整 URL,包括协议(如 https://)。


更多示例

将 href 值设置为指向页面内的锚点:

location.href = "#top";
亲自试一试 »

将 href 值设置为指向电子邮件地址(将打开并创建新电子邮件):

location.href = "mailto:someone@example.com";
亲自试一试 »

浏览器支持

location.href所有浏览器都支持:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes