我有以下网址:
http://www.mysite.co.uk/?location=mylocation1
我需要location从 URL 中获取值到一个变量中,然后在 jQuery 代码中使用它:
location
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; }
例如,如果您有 URL:
http://www.example.com/?me=myValue&name2=SomeOtherValue
此代码将返回:
{ "me" : "myValue", "name2" : "SomeOtherValue" }
你可以这样做:
var me = getUrlVars()["me"]; var name2 = getUrlVars()["name2"];