-1

I have a url

http://localhost:8162/UI/UsersDetail.aspx?id_temp=U0001

I want to get string use javascript

?id_temp=U0001

Thank guys.

Headshot
  • 319
  • 1
  • 5
  • 19

2 Answers2

1

If this isn't the location of the page, you may use

var str = url.match(/\?.*$/)[0];

If this url is the current one of your page, use

var str = location.search;
Denys Séguret
  • 355,860
  • 83
  • 755
  • 726
0

You can use regex:

url.match(/\?(\w+=\w+)/)[0];
  1. / : Delimiter of regex
  2. \? : Matches ? need to escape using \
  3. \w+: Matches all alphanumeric characters and _
  4. = : Matches =
Tushar
  • 82,599
  • 19
  • 151
  • 169