Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/05/2017, 16:36
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Cambiar destino form segun option seleccionado

Algo rápido podría ser esto:

Código HTML:
Ver original
  1. <form id="form" method="post" action="1">
  2.     <select onchange="document.getElementById('form').setAttribute('action', this.value)">
  3.         <option value="1">Hola</option>
  4.         <option value="2">Chau</option>
  5. <input type="submit" value="go!" />
  6. </form>