Change src of an image

0

How to change the src of an image being passed with a php function to get the image directory

    
asked by anonymous 15.06.2017 / 17:35

1 answer

3

If you are using jquery, put an identifier in the img tag when you need to update the image, use the jQuery attr $("#id_da_image").attr("src", "novoEndereco");

  

Practical example (jQuery):

<!-- incluindo o jquery -->
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

<script>
    //Criando função para ser acionada no onclick de um button
    var trocaImagem = function () {
         $('#imagem1').attr('src', 'imagem2.jpg');
    };
</script>

<!-- criando tag img com o id imagem1 para ser manipulada pelo jquery -->
<img id="imagem1" src="imagem1.jpg" />

<!-- criando botão para disparar o método javascript trocaImagem para realizar a troca do atributo src -->
<button type="button" onclick="trocaImagem()" />
  

Practical example (pure javascript):

<script>
    //Criando função para ser acionada no onclick de um button
    var trocaImagem = function () {
         document.getElementById('imagem1').src = 'imagem2.jpg';
    };
</script>

<!-- criando tag img com o id imagem1 para ser manipulada pelo javascript -->
<img id="imagem1" src="imagem1.jpg" />

<!-- criando botão para disparar o método javascript trocaImagem para realizar a troca do atributo src -->
<button type="button" onclick="trocaImagem()" />
    
15.06.2017 / 18:09