Как мне получить url-параметр javascript....
Две страницы:
index. html/js
other_page. html/js
Мне нужно получить значение идентификатора из моего index.html в other_page используется url-параметр...
Что я уже пробовал:
Я пытался:
$.urlParam = function(name) { var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(window.location.href); if (results == null) { return null; } else { return results[1] || 0; } } var id_titulo_busca = $.urlParam('id_titulo'); // if(id_titulo_busca !== 'null'){// //carrega_descricao(id_titulo_busca);//alert(id_titulo_busca);// } $("pesquisar").click(function() { console.log( "ready!" );// alert("test"); });