jQuery从URL获取查询字符串
我有以下网址:
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获取该值吗?
相关分类