Jump to content
Fórum Script Brasil
  • 0

Atualizar Iframe Dinamicamente Com Javascript é possível?


Junior Ari

Question

Galara é o seguinte,

Tenho uma página com um iframe que mostra informações de uma cidade.

Queria atualizar esse iframe de acordo com a cidade escolhida dentro de um select, tipo assim:

<iframe src="manaus-am.html" height="260px" width="260px" frameborder="0" allowtransparency="yes" scrolling="no" name="alvo" id="alvo"></iframe>

ou

<iframe src="itacoatiara-am.html" height="260px" width="260px" frameborder="0" allowtransparency="yes" scrolling="no" name="alvo" id="alvo"></iframe>

e o select:

<select name="select" id="select">

<option value="manaus-am">Manaus</option>

<option value="coari-am">Coari</option>

<option value="itacoatiara-am">Itacoatiara</option>

</select>

<a href="#" target="alvo">Atualizar</a>

ou seja, quero que ao selecionar uma cidade diferente e clicar no link Atualizar, o iframe seja atualizado conforme a cidade selecionada

alguém ajuda ae?? :unsure: :blush:

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

é pessoal, não aguentei esperar e consegui fazer funcionar atraves de script, abaixo:

&lt;script>
function atualizar() {
    
    var cidade = document.getElementById('cidade').value;
    var xsrc = 'http://www.meudominio.com.br/cid_'+cidade+'.html'

    document.getElementById('alvo').src = xsrc;
    document.getElementById('alvo').location.reload();

}
</script>

<a href="#" onclick="atualizar();">Atualizar</a>

valeu :P :lol:

Link to comment
Share on other sites

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...