Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/09/2013, 12:56
bathorz
 
Fecha de Ingreso: agosto-2013
Mensajes: 150
Antigüedad: 10 años, 8 meses
Puntos: 29
Respuesta: Formulario, opcion multiple o menu desplegable

Algo sencillo
Código HTML:
Ver original
  1.       <form name="form1" action="" method="post">
  2.          <div>
  3.             <select name="origen" id="origen" onchange="location.href = this.value;" >
  4.                <option value="">Destino</option>
  5.                <option value="http://www.europa.com">Europa</option>
  6.                <option value="http://www.america.com" >América</option>
  7.             </select>
  8.             <!-- -->
  9.             <input type="submit" value="Cargar" name="cargar" onclick="location = this.form.origen.value;" >
  10.          </div>
  11.       </form>
  12. </body>