Jump to content
Fórum Script Brasil
  • 0

Dúvida - InnerHTML em outra página


_Lupin_

Question

Olá pessoal, sou novo no tópico e em javascript e me surgiu uma dúvida.

Tenha uma página index.html e uma teste.html

Quero pegar o dado inserido no formulario da pagina index (nesse teste abaixo eu não pego o dado só faço um teste) e quando eu clicar no botao ele dar um innerHTML na página teste.html, tem como isso?? Eu tentei mas não consegui, vou colocar abaixo o que fiz, um pequeno teste.

INDEX.HTML:

<HTML>

<HEAD>

&lt;script LANGUAGE="javascript">

function teste()

{

janela = window.open("teste.html", "JANELA", "height = 300, width = 400");

var text = janela.document.getElementById("teste");

text.innerHTML = "teste";

}

</SCRIPT>

</HEAD>

<BODY>

<FORM NAME="form1">

<INPUT TYPE="text" NAME="input" VALUE=""><BR>

<INPUT TYPE="button" NAME="botao" VALUE="Controlar" onClick="teste()">

</FORM>

<DIV id="teste"></DIV>

</BODY>

</HTML>

TESTE.HTML:

<HTML>

<HEAD>

&lt;script LANGUAGE="javascript">

function janelaSecundaria (URL){

window.open(URL,"janela1","width=120,height=300,scrollbars=NO")

}

</SCRIPT>

</HEAD>

<BODY>

<DIV id="teste"></DIV>

</BODY>

</HTML>

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...