我想要当前的url路径及其查询字符串。
我在下面试过但没有获得所需的输出。
var pathname = window.location.pathname; // Returns path only
var url = window.location.href;
假设我的网址为http://localhost:1111/Contact/Index?text=aa。
注意:如果没有查询字符串,查询字符串在这里是可选的,那么它应该只提供路径名。
我想 /联系/索引?text = aa ,TIA。
答案 0 :(得分:0)
在jQuery中你可以做到
$(location).attr('href')
location对象还包含属性,如host,hash,protocol和pathname。
答案 1 :(得分:-2)
此window.location.pathname
会为您提供路径或网址。