我正在使用jQuery。如何获取当前URL的路径并将其分配给变量?
示例URL:
http://localhost/menuname.de?foo=bar&number=0
我正在使用jQuery。如何获取当前URL的路径并将其分配给变量?
示例URL:
http://localhost/menuname.de?foo=bar&number=0
当前回答
在jstl中,我们可以使用pageContext.request.contextPath访问当前的url路径,
url = "${pageContext.request.contextPath}" + "/controller/path"
示例:在页面中http://stackoverflow.com/questions/406192这将给http://stackoverflow.com/controller/path
其他回答
如果要获取根站点的路径,请使用以下命令:
$(location).attr('href').replace($(location).attr('pathname'),'');
window.location将为您提供当前URL,您可以从中提取任何您想要的内容。。。
这也将起作用:
var currentURL = window.location.href;
如果有人想要连接URL和哈希标签,请结合两个功能:
var pathname = window.location.pathname + document.location.hash;
所有浏览器都支持Javascript窗口对象。它定义浏览器的窗口。
全局对象和函数自动成为窗口对象的一部分。
所有全局变量都是窗口对象财产,所有全局函数都是其方法。
整个HTML文档也是一个窗口属性。
因此,您可以使用window.location对象获取所有与url相关的属性。
Java脚本
console.log(window.location.host)//返回主机console.log(window.location.hostname)//返回主机名console.log(window.location.pathname)//返回路径console.log(window.location.href)//返回完整的当前urlconsole.log(window.location.port)//返回端口console.log(window.location.protocol)//返回协议
JQuery(J查询)
console.log(“host=”+$(位置).attr('host'));console.log(“hostname=”+$(位置).attr('主机名'));console.log(“路径名=”+$(位置).attr('路径名'));console.log(“href=”+$(位置).attr('href'));console.log(“port=”+$(位置).attr('port'));console.log(“protocol=”+$(位置).attr('协议'));<script src=“https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js“></script>