teslariu

mas DOM

Jul 11th, 2022
1,459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <h2>¿Que hace este código</h2>
  5. <p>JavaScript puede modificar ciertos valores</p>
  6. <p>En este caso, modifica la imagen</p>
  7.  
  8. <button onclick="document.getElementById('miImagen').src='imagenes/perro1.png'">Caminar</button>
  9.  
  10. <img id="miImagen" src="imagenes/perro2.png" style="width:100px">
  11.  
  12. <button onclick="document.getElementById('miImagen').src='imagenes/perro2.png'">Correr</button>
  13.  
  14. </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment