Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Pegando o valor do input pelo Id e diretionar para uma outra página usando location.href
- <form>
- <input type="text" id="valor_busca" />
- <input type="submit" value="Pesquisar" onclick="redirecionar()/>
- <form/>
- <script>
- function redirecionar() {
- var valor_busca = document.getEementById(" valor_busca").value;
- location.href="site.com/busca/" + valor_busca;
- }
- <script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement