gpt4 book ai didi

javascript - Jquery 获取数组中的 window.location.search 标签

转载 作者:行者123 更新时间:2023-11-28 01:52:03 25 4
gpt4 key购买 nike

假设我有这个地址:http://**/test.php?alfa=1&beta=2

我知道我可以使用窗口位置中的搜索标签获得 ?alfa=1&beta=2....但是有什么方法可以将结果拆分为 2 个字符串,在这种情况下,首先是 ?alfa=1而第二个 &beta=2(或只是 beta=2)使用 JQuery?

最佳答案

// Read a page's GET URL variables and return them as an associative array.
function getUrlVars()
{
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}

不是我的作品。找到了 here首先点击谷歌。

关于javascript - Jquery 获取数组中的 window.location.search 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19452711/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com