我有一个像/accounts/?status=done
current url
因此,在加载文档时,我想获得GET data
状态=完成
所以下面是我的代码,它可以获取当前的 url,但不能获取 GET 数据
<script>
$(window).load(function() {
//alert("window load occurred!");
var pathname = window.location.pathname;
console.log(pathname);
$.get(pathname,function(data){ console.log(data) });
});
</script>
那么如何在加载页面时在 jquery 中获取当前 url 和 GET 数据,例如 ?status=done ?
编辑
所以我已经根据下面提供的链接进行了编辑,但仍然无法打印查询字符串参数
<script>
function getParameterByName(name) {
console.log(name+"......................");
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
$(window).load(function() {
//alert("window load occurred!");
var pathname = window.location.pathname;
console.log(pathname+"hurayyyyy");
console.log(pathname);
var res = getParameterByName(window.location.pathname)
console.log(res+"oooppppppppppppssssssssssss");
});
</script>
结果就像下面一样