如何在jQuery中获取当前url和查询字符串

时间:2017-09-06 07:09:37

标签: javascript jquery

我想要当前的url路径及其查询字符串。

我在下面试过但没有获得所需的输出。

var pathname = window.location.pathname; // Returns path only
var url = window.location.href;

假设我的网址为http://localhost:1111/Contact/Index?text=aa

注意:如果没有查询字符串,查询字符串在这里是可选的,那么它应该只提供路径名。

我想 /联系/索引?text = aa ,TIA。

2 个答案:

答案 0 :(得分:0)

在jQuery中你可以做到

$(location).attr('href')

location对象还包含属性,如host,hash,protocol和pathname。

答案 1 :(得分:-2)

window.location.pathname会为您提供路径或网址。