jquery从URL获取查询字符串
可能重复:
我怎样才能得到查询字符串值?
我有以下网址:
http://www.mysite.co.uk/?location=mylocation1
我需要的是从URL中获取location
的值到一个变量中,然后在jQuery代码中使用它:
var thequerystring = "getthequerystringhere"
$('html,body').animate({scrollTop: $("div#" + thequerystring).offset().top}, 500);
有谁知道如何使用JavaScript或jQuery获取该值?
来自:http://jquery-howto.blogspot.com/2009/09/get-url-parameters-values-with-jquery.html
这是你需要的:)
以下代码将返回一个包含URL参数的JavaScript对象:
// 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;
}
例如,如果您拥有网址:
http://www.example.com/?me=myValue&name2=SomeOtherValue
此代码将返回:
{
"me" : "myValue",
"name2" : "SomeOtherValue"
}
你可以这样做:
var me = getUrlVars()["me"];
var name2 = getUrlVars()["name2"];
location.search
这就是你所需要的
https://developer.mozilla.org/en-US/docs/DOM/window.location
用一些jQuery和直线JS来做到这一点的简单方法,只需在Chrome或Firefox中查看您的控制台即可查看输出结果...
var queries = {};
$.each(document.location.search.substr(1).split('&'),function(c,q){
var i = q.split('=');
queries[i[0].toString()] = i[1].toString();
});
console.log(queries);
链接地址: http://www.djcxy.com/p/17595.html