JavaScript为您提供了许多方法来获取当前URL显示在Web浏览器地址栏中。 您可以使用Window对象的Location对象属性来获取这些详细信息。 下面是位置对象的几个属性的列表。 第一个示例将在Web浏览器中获取当前URL。 下面列出了一些更多的示例供您参考。
1. href =>这将返回在地址栏中显示的整个URL。
var currentURL = window.location.href;2. host =>这将返回地址栏中URL的主机名和端口。
var currentHost = window.location.host;
3. hostname =>这将只返回地址栏中URL的主机名。
var currentHostname = window.location.hostname;
4. post =>这将只返回地址栏中URL的端口详细信息。
var currentPort = window.location.port;
5. protocol =>这将在地址栏中返回URL的协议。 像网址使用HTTP(无SSL)或HTTPS(使用SSL)。
var currentProtocol = window.location.protocol;
6. pathname =>这将返回地址栏中的URL的路径名(域名后的值)。
var currentPathname = window.location.pathname;
7. pathname =>这将返回URL的锚部分,包括hash singh(#)。
var currenthash = window.location.hash;
8. search =>这将返回以问号(?)开头的URL的部分。
var currentSearchString = window.location.search;