Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/11/2012, 04:57
ElAthlit
 
Fecha de Ingreso: febrero-2011
Mensajes: 672
Antigüedad: 13 años, 11 meses
Puntos: 78
Respuesta: validar formularios

Añade un "id" a tus elementos, y podrás usar getElementById

Es decir:
Código Java:
Ver original
  1. <html:select property="cboperiodo" id="periodo">
  2.  <html:option value="2012" >2012</html:option>
  3.  <html:option value="2013">2013</html:option>
  4.  <html:option value="2014">2014</html:option>
  5.  </html:select>

Y desde JavaScript capturas el id "periodo", y preguntas por el index si está en 0.
Si lo está, no han seleccionado nada del combo.

Saludos.