jQuery从URL获取查询字符串

我需要的是location将URL 的值转换成变量,然后在jQuery代码中使用它:

var thequerystring = "getthequerystringhere"

$('html,body').animate({scrollTop: $("div#" + thequerystring).offset().top}, 500);

有谁知道如何使用JavaScript或jQuery来获取该价值?

回答:

这就是你所需要的:)

以下代码将返回一个包含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"];

以上是 jQuery从URL获取查询字符串 的全部内容, 来源链接: utcz.com/qa/421805.html

回到顶部