我只想获取网站URL。不是从链接获取的URL。在页面加载时,我需要能够获取网站的完整、当前URL,并将其设置为一个变量,以便根据需要进行处理。


当前回答

使用JavaScript获取当前URL:

window.location.toString();窗口.location.href

其他回答

location.origin+location.pathname+location.search+location.hash;

and

location.href

也一样。

打开开发人员工具,在控制台中键入以下内容,然后按Enter键。

window.location

下面是当前页面上的结果截图。

从这里获取您需要的信息。:)

短的

location+''

let url=location+'';console.log(url);

使用window.location.href获取完整的URL。使用window.location.pathname获取离开主机的URL。

获取当前页面URL:

window.location.href