Ver Mensaje Individual
  #6 (permalink)  
Antiguo 11/12/2004, 12:30
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Rehola.

Ya veo que no te entendí bien la vez anterior, a ver si esta lo consigo. Con este código se abren las páginas index.htm, index1,htm, index2.htm y index3.htm
Código HTML:
<html>
<head>
<script>
function abrir(num) {
  window.open("http://www"+num+".juego.com/index.htm");
  for(i=1;i<4;i++); //cambia el 4 por el número que necesites 
    window.open("http://www"+num+".juego.com/index"+i+".htm");
}
</script>
</head>
<body>
<select onchange="abrir(this.value)">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</body>
</html> 
Espero que te sirva. Saludos,