窗口的location属性(即window.location)是对Location对象的引用。
位置对象
window.location对象表示在窗口中显示的文档的当前URL。
可以在不使用窗口前缀的情况下写入 window.location对象。
一些示例:
-
location.href
-
location.hostname
-
location.pathname
-
location.protocol
-
location.port
下一节将向您展示如何使用location对象属性获取页面的URL以及主机名,协议等。
获取当前页面的URL
该location.href属性返回当前页面的URL。
var x = location.href;
获取主机名
该location.hostname属性返回(当前页面的)Internet主机的名称。
var x = location.hostname;
获取当前页面路径名
该location.pathname属性返回当前页面的路径名。
路径名是一个字符串,该字符串从主机名开始,包含一个初始的“ /”,后跟URL的路径。
var x = location.pathname;
获取当前页面协议
该location.protocol属性返回当前URL的Web协议,包括冒号(:)。
var x = location.protocol;
获取端口号
该location.port属性返回(当前页面的)Internet主机端口号。
var x = location.port;
注意:如果未在URL中指定端口号或它是方案的默认端口(http的80和https的443),则port属性返回一个空字符串。
窗口位置分配
location.assign()方法使窗口加载并以指定的URL显示文档。
location.assign("https://www.nhooo.com");