Fernanda_25 Posted June 30, 2010 Report Share Posted June 30, 2010 (edited) Hola tengo una consulta.. pasa que estamos empezando con javascript en dreamweaver y hay un ejercicio que no me sale.. La pagina tiene dos imagenes y un boton.. cuando se hace click en el boton se tienen que intercambiar las imagenes.. Sé que la propiedad que hay que cambiar es el src de la imagen, pero no tengo idea de como hacerlo.. empecé declarando dos variables y que se haga referencia a ellas con documen.getElelemntById("id de la imagen") pero creo que está mal.. segun lo que estuve leyendo en internet se hace con .src Espero que me puedan ayudar, gracias! Edited July 3, 2010 by Fernanda_25 Link to comment Share on other sites More sharing options...
Ra Posted June 30, 2010 Report Share Posted June 30, 2010 Lo muevo a Webmaster... PD: es document.getElementById('imagen').src = "URL de la imagen"; Link to comment Share on other sites More sharing options...
alvaroxz Posted June 30, 2010 Report Share Posted June 30, 2010 (edited) Esto no va aca va en webmaster te lo van a mover.... de todos modos... <img width="300" height="300" id="img1" src="img1.png" alt="1"/> <img width="300" height="300" id="img2" src="img2.png" alt="2"/> <br/> <input value="Intercambiar" type="button" onclick=" img1 = document.getElementById('img1'); img2 = document.getElementById('img2'); if(img1.alt == '1' && img2.alt == '2'){ img1.src='img2.png'; img1.alt='2'; img2.src='img1.png'; img2.alt='1'; } else{ img1.src='img1.png'; img1.alt='1'; img2.src='img2.png'; img2.alt='2'; } "/> Edited June 30, 2010 by alvaroxz Link to comment Share on other sites More sharing options...
Fernanda_25 Posted July 1, 2010 Author Report Share Posted July 1, 2010 Muchas muchas gracias chicos, funcionó :) Link to comment Share on other sites More sharing options...
alvaroxz Posted July 1, 2010 Report Share Posted July 1, 2010 Que bueno :) , editalo y pon como segundo titulo solucionado, para mayor orden Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now