Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/07/2012, 17:31
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 5 meses
Puntos: 1567
Respuesta: Iframe con Java

En tu código "value" no es nada, así que no hay nada que cargar
deberías hacer algo como esto

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6.  
  7. <script type="text/javascript">
  8. //<![CDATA[
  9. function crearframe(pagina) {
  10.    var testframe = document.createElement("iframe");
  11.    testframe.id = "testframe";
  12.    testframe.src = pagina;
  13.     testframe.width= "900px";
  14.    var control = document.getElementById("testframe")
  15.    if (control==null) {
  16.    document.body.appendChild(testframe);
  17.    }
  18. }
  19.  
  20. //]]>
  21. </head>
  22. <select name="select3" size="21" onclick="crearframe('http://forosdelweb.com')" style="width: 325px;">
  23.       <option>----------</option>
  24.  
  25. </body>
  26. </html>

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.