gpt4 book ai didi

javascript - 如何从 URL 获取 GET 查询?

转载 作者:行者123 更新时间:2023-11-30 23:41:31 24 4
gpt4 key购买 nike

我想我以前用javascript做过这个,但我现在不记得是怎么做的了。我有一个像 http://www.example.com/cow.php?says=moo 这样的网址我想从中得到“哞”声。

最佳答案

这是一个从 URL 返回变量数组的函数

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;
}

关于javascript - 如何从 URL 获取 GET 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4453491/

24 4 0
文章推荐: javascript - AJAX 与 Rails 3 和 jQuery?
文章推荐: javascript - 检查标记是否位于当前可见区域中
文章推荐: javascript - 需要循环帮助来使用 Javascript 构建表
文章推荐: javascript - 我可以将 javascript 放在
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com