Window location.href
示例
获取当前页面的 URL
let url = location.href;
自己试试 »
设置当前页面的 URL
location.href = "https://w3schools.org.cn";
自己试试 »
更多示例如下。
描述
The location.href
属性设置或返回当前页面的完整 URL。
语法
返回 href 属性
location.href
设置 href 属性
location.href = URL
属性值
参数 | 描述 |
URL | 绝对 URL,例如 http://www.example.com/default.htm 相对 URL,例如 default.htm 锚点 URL,例如 location.href="#top" 新的协议,例如 ftp://someftpserver.com mailto:[email protected] file://host/path/example.txt |
返回值
类型 | 描述 |
字符串 | 页面的完整 URL,包括协议(例如 https://)。 |
更多示例
浏览器支持
location.href
在所有浏览器中都受支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |