从位置获取价值

时间:2010-08-04 15:08:48

标签: javascript location-href

我需要从搜索查询中获取页面地址的搜索查询。

什么是最安全的跨浏览器,最有效的获取字符串的方法。例如:

q=123&data=true&b=456
//from
http://www.example.com/?q=123&data=true&b=456

所有现代浏览器(IE7 +,FF,webkit,opera)都可以使用location.search吗?

2 个答案:

答案 0 :(得分:3)

是的,location.search是可行的方法。

在JS 1.0中引入,受IE 3.0,Netscape 2,Opera 5.12,FF1.0,Konqueror 3.1和Safari 1.0支持。

我认为Chrome总是支持它,因为其他浏览器支持它已经很久了。

答案 1 :(得分:0)

以下是一个固定答案:how to get GET and POST variables with JQuery?