我只想获取网站URL。不是从链接获取的URL。在页面加载时,我需要能够获取网站的完整、当前URL,并将其设置为一个变量,以便根据需要进行处理。
当前回答
你有多种方法可以做到这一点。
1:
location.href;
2:
document.URL;
3:
document.documentURI;
其他回答
let url=新url(window.location.href);console.log(url.href);
使用以上代码获取网站的当前URL。
或者试试这个https://bbbootstrap.com/code/get-current-url-javascript-54628697
使用此项:
var url=window.location.href;console.log(url);
获取当前页面URL:
window.location.href
您可以通过location.href获取当前页面的完整链接要获取当前控制器的链接,请使用:
location.href.substring(0, location.href.lastIndexOf('/'));
使用JavaScript获取当前URL:
window.location.toString();窗口.location.href