Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/07/2011, 14:07
Avatar de lukazz
lukazz
 
Fecha de Ingreso: marzo-2011
Mensajes: 88
Antigüedad: 13 años
Puntos: 3
Respuesta: iframe con diferentes enlaces

listo ya lo solucione hice esto igual muchas gracias :


Código HTML:
<script type="text/javascript">
function url( cUrl )
{
	var a = document.getElementById( 'a' );
	a.src = cUrl;
}
</script>


  <iframe src="" height="300" width="400" id="a"></iframe>
  <input type="button" onclick="url( 'prueba1.html' );" value="ver 1"/>
  <input type="button" onclick="url( 'prueba2.html'' );" value="ver 2"/>
  <input type="button" onclick="url( 'prueba3.html'' );" value="ver 3"/>