tpiardi Posted November 6, 2011 Report Share Posted November 6, 2011 A minha idéia é fazer um textbox que você irá digitar algo e ele adicionará isso ao final da url que abrirá em uma nova janela.Exemplo:Url: http://www.warofninja.com/profile/Box: testePagina aberta: http://www.warofninja.com/profile/testeNo entanto meu código está fazendo algo errado, alguém pode me dizer o que é o problema?Obrigadovar elmSearchDiv = document.createElement('div'); elmSearchDiv.innerHTML = '<form method="GET" action="http://www.warofninja.com/profile/">' + '<label for="player">Digite o nome:</label> ' + '<input type="text" id="player"> ' + '<input type="submit" value="Search">' + '</form>'; document.body.insertBefore(elmSearchDiv, document.body.firstChild); elmSearchDiv.style.fontSize = 'small'; elmSearchDiv.style.textAlign = 'right'; elmSearchDiv.style.borderBottom = '1px solid silver'; Quote Link to comment Share on other sites More sharing options...
0 vini_loock Posted November 7, 2011 Report Share Posted November 7, 2011 (edited) Tenta esse ai:HTML<form> <label> <span>http://www.warofninja.com/profile/</span> <input type="text" /> </label> <input type="submit" /> </form> e JavaScriptwindow.onload = function(){ document.getElementsByTagName('form')[0].onsubmit = function(){ location.href = 'http://www.warofninja.com/profile/'+this.getElementsByTagName('input')[0].value; } } Edited November 7, 2011 by vini_loock Quote Link to comment Share on other sites More sharing options...
0 tpiardi Posted November 7, 2011 Author Report Share Posted November 7, 2011 Estou usando o firefoxEu mudei o código pra sua sugestão e está dando este erro:Erro: Component is not availableLinha: 22A linha 22 é:window.onload = function(){ Quote Link to comment Share on other sites More sharing options...
0 vini_loock Posted November 7, 2011 Report Share Posted November 7, 2011 (edited) Nunca vi esse erro, tenta em outro navegador, vou tentar mais tarde em casa c você n conseguir antes Edited November 7, 2011 by vini_loock Quote Link to comment Share on other sites More sharing options...
0 fiote Posted November 8, 2011 Report Share Posted November 8, 2011 tpiardi, melhor você postar o resto do código que você está usando. Quote Link to comment Share on other sites More sharing options...
Question
tpiardi
A minha idéia é fazer um textbox que você irá digitar algo e ele adicionará isso ao final da url que abrirá em uma nova janela.
Exemplo:
Url: http://www.warofninja.com/profile/
Box: teste
Pagina aberta: http://www.warofninja.com/profile/teste
No entanto meu código está fazendo algo errado, alguém pode me dizer o que é o problema?
Obrigado
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.