Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/07/2009, 22:18
ivandrade
 
Fecha de Ingreso: julio-2009
Mensajes: 7
Antigüedad: 14 años, 9 meses
Puntos: 0
Respuesta: Validar opcion existe lista deplegable.

tambien podrias hacer una funcion
Código:
function ExisteEnSelect(id,valor){
obj = document.getElementById(id);
obj.selectedIndex=-1; //Se elimina la seccion actual del obj destino
obj.value = valor; //Buscara si el value existe y lo selecciona;
var Existe = obj.selectedIndex==-1 ? false : true;
obj.selectedIndex = -1;
return Existe;
}
Con esto no recorres todo el arreglo de options