我正在使用jQuery。如何获取当前URL的路径并将其分配给变量?
示例URL:
http://localhost/menuname.de?foo=bar&number=0
我正在使用jQuery。如何获取当前URL的路径并将其分配给变量?
示例URL:
http://localhost/menuname.de?foo=bar&number=0
当前回答
您可以记录window.location并查看所有选项,仅用于URL:
window.location.origin
对于整个路径使用:
window.location.href
还有位置__
.host
.hostname
.protocol
.pathname
其他回答
通过以下代码,您可以获得Jquery中的当前URL。
$(location).attr('hostname'); //origin URL
$(location).attr('pathname'); // path name
$(location).attr('hash'); // everything comes after hash
您可以记录window.location并查看所有选项,仅用于URL:
window.location.origin
对于整个路径使用:
window.location.href
还有位置__
.host
.hostname
.protocol
.pathname
最短的方法(11个字符)是
让myUrl=“”+位置console.log(myUrl);
var currenturl = jQuery(location).attr('href');
只需在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));
}
我希望它对你有用。