How to extract the query string from the URL in javascript?
Thank you!
|
|
|
You can easily build a dictionary style collection...
And use it like this...
|
|||||||||||||||
|
|
If you're referring to the URL in the address bar, then
will give you just the query string part. Note that this includes the question mark at the beginning. If you're referring to any random URL stored in (e.g.) a string, you can get at the query string by taking a substring beginning at the index of the first question mark by doing something like:
That assumes that any question marks in the fragment part of the URL have been properly encoded. If there's a target at the end (i.e., a # followed by the id of a DOM element) it'll include that too. |
|||
|
|
|
Here's the method I use...
It returns an object of strings and arrays and seems to work quite well. (Strings for single keys, arrays for the same key with multiple values.) |
||||
|
|
|
Another possibility is using the jQuery QueryString plugin. It provides easy ways to access values and even create a new querystring. |
|||
|
|