0
我有兩個不同的查詢字符串:?pid=
和?ref=
。目前我使用window.history.pushState
添加查詢字符串。我如何檢查是否有查詢字符串,以避免?pid=foo?ref=bar
而不是?pid=foo&ref=bar
?如何檢查查詢字符串是否已經存在
當前代碼:
if (!!$.cookie('myrefcookie')) {
var myref = $.cookie("myrefcookie")
var target = window.location.href + '?ref=' + myref;
window.history.pushState(null, null, target);
}