Ver Mensaje Individual
  #3 (permalink)  
Antiguo 12/06/2014, 20:10
jeancarsas
 
Fecha de Ingreso: junio-2014
Mensajes: 5
Antigüedad: 9 años, 10 meses
Puntos: 0
Respuesta: Cambiar imagenes dentro de la misma web

Algo asi?

Código HTML:
Ver original
  1. <script type="text/javascript">
  2.     function reemplazador () {
  3.         // reemplzador ...
  4.     document.getElementById("texto") . innerHTML = '<img src="http://www.nocturnar.com/imagenes/cara-triste/emoticon-triste-de-archivo-vectorial_18-9938.jpg" />';
  5.     }
  6.  
  7.  
  8. </head>
  9.  
  10.  
  11. <button type="button"  onclick="reemplazador()" >Hazme Clic!!</button>
  12. <p id="texto"><img src="http://www.ecbloguer.com/alimentandoaisabel/wp-content/uploads/2011/06/800px-Smiley_svg.png" /></p>
  13.  
  14. </body>
  15.  
  16. </html>