我正在使用jQuery。如何获取当前URL的路径并将其分配给变量?

示例URL:

http://localhost/menuname.de?foo=bar&number=0

当前回答

只需在JavaScript中添加此函数,它将返回当前路径的绝对路径。

function getAbsolutePath() {
    var loc = window.location;
    var pathName = loc.pathname.substring(0, loc.pathname.lastIndexOf('/') + 1);
    return loc.href.substring(0, loc.href.length - ((loc.pathname + loc.search + loc.hash).length - pathName.length));
}

我希望它对你有用。

其他回答

以下是可以使用的有用代码片段的示例——其中一些示例使用标准JavaScript函数,并不特定于jQuery:

请参阅8个有用的jQuery代码段了解URL的&Querystring。

您需要使用JavaScript的内置window.location对象。

要获取路径,可以使用:

var pathname = window.location.pathname; // Returns path only (/path/example.html)
var url      = window.location.href;     // Returns full URL (https://example.com/path/example.html)
var origin   = window.location.origin;   // Returns base URL (https://example.com)

这也将起作用:

var currentURL = window.location.href;

window.location将为您提供当前URL,您可以从中提取任何您想要的内容。。。