Ver Mensaje Individual
  #8 (permalink)  
Antiguo 17/05/2002, 18:56
Avatar de bakanzipp
bakanzipp
 
Fecha de Ingreso: noviembre-2001
Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 23 años, 2 meses
Puntos: 0
Re: ocultar select con info

ey tb estoy probando de la otra forma que me dijiste..

con marcos...

tengo 3 paginas

la principal (frame.html) llama a los dos marcos (a.html y b.html). En el marco a tengo el select con dos datos y en el marco b se supone que debo mostrarlos...como lo podria hacer...aqui te mando el codigo para ver si puedes ayudarme..

PAGINA FRAME.HTML

Código:
  
<html>
  <head>
  <title>Mi pagina</title>
  </head>
  <frameset rows="0%,*" bordercolor="red">
    <frame src="a.html" marginwidth="5" marginheight="30" frameborder="0" >
    <frame src="b.html" marginwidth="95" marginheight="0" frameborder="0">
  </frameset>
</html>
--------------------------------
pagina A.HTML
Código:
  
<html>
  <head>
  </head>
  <body>
   <form name=form1>
   <select name=sel size=1>
    <option value="dato1" selected>dato1</option>
    <option value="dato2">dato2</option>
   </select>
   </form>
  </body>
</html>
-----------------------
PAGINA B.HTML
Código:
  
<html>
  <head>
  <script language=javascript>
   function cargar();{
    var dato=document.form1.sel[0].value;
    alert(dato);
  }
  </script> 
  </head>
  <body onload="cargar();">
  </body>
</html>
helpppppppppppppppp meeeeeeeeeeeeeeeee
no veo una