I have a HTML page which is loaded using a URL that looks a little like this:
JavaScript
x
2
1
http://localhost:8080/GisProject/MainService?s=C&o=1
2
I would like to obtain the query string parameters in the URL without using a jsp
.
Questions
Can this be done using
Javascript
orjQuery
? Because I want to test my page using myNode.js
local server before deploying it in the remote machine which uses a Java server.Is there any library that will allow me to do that?
Advertisement
Answer
A nice solution is given here:
JavaScript
1
14
14
1
function GetURLParameter(sParam)
2
{
3
var sPageURL = window.location.search.substring(1);
4
var sURLVariables = sPageURL.split('&');
5
for (var i = 0; i < sURLVariables.length; i++)
6
{
7
var sParameterName = sURLVariables[i].split('=');
8
if (sParameterName[0] == sParam)
9
{
10
return sParameterName[1];
11
}
12
}
13
}•
14
And this is how you can use this function assuming the URL is,
http://dummy.com/?technology=jquery&blog=jquerybyexample
:
JavaScript
1
3
1
var tech = GetURLParameter('technology');
2
var blog = GetURLParameter('blog');`
3