http://domain.com/page.html?returnurl=%2Fadmin
For js within page.html,how can it retrieve GET parameters?
For the above simple example,func('returnurl') should be /admin
But it should also work for complex querystrngs...
For For the above simple example, But it should also work for complex querystrngs... |
||||
|
With the window.location object. This code gives you GET without the question mark.
From your example it will return |
|||||||||
|
|
You can then get the test parameter from |
|||||
|
|
a more fancy way to do it: :)
|
|||||
|
|
You can use search function available in location object. Search function gives the parameter part of the URL. details can be found here - http://www.javascriptkit.com/jsref/location.shtml You will have to parse the resulting string for getting the variables and their values e.g. splitting them on '=' |
|||
|
|
Locationobject. – asleepysamurai Mar 27 '11 at 10:19decodeURIComponentand ignore the others :) – Elian Ebbing Mar 27 '11 at 10:30