Advertisement
GuiEnrik

Get Url Parameters with JS

Jan 30th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /** From: http://gustavopaes.net/blog/2009/javascript-pegar-valor-de-um-parametro-na-url.html
  2.  * Created by: http://gustavopaes.net
  3.  * Created on: Nov/2009
  4.  *
  5.  * Retorna os valores de parâmetros passados via url.
  6.  *
  7.  * @param String Nome da parâmetro.
  8.  *
  9.  * Para usar, sem segredos. Supondo que você deseje pegar o valor do parâmetro sessid da url http://gustavopaes.net/?sessid=NHJI89182JAIS:
  10.  * var param_sessid = _GET("sessid");
  11.  */
  12. function _GET(name)
  13. {
  14.   var url   = window.location.search.replace("?", "");
  15.   var itens = url.split("&");
  16.  
  17.   for(n in itens)
  18.   {
  19.     if( itens[n].match(name) )
  20.     {
  21.       return decodeURIComponent(itens[n].replace(name+"=", ""));
  22.     }
  23.   }
  24.   return null;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement