Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/04/2002, 06:35
Avatar de Helbira
Helbira
 
Fecha de Ingreso: octubre-2001
Ubicación: Sevilla, España
Mensajes: 1.228
Antigüedad: 23 años, 3 meses
Puntos: 5
Re: Select Multiple

Ahí tienes un ejemplo:

<FORM name="miformulario">
<SELECT NAME="miselectMultiple">
<OPTION> Opcion1
<OPTION> Opcion2
<OPTION> Opcion3
</SELECT>
</FORM>

function AlgunaSeleccion() {
if(document.miformulario.miselectMultiple.selected Index==-1)
alert('Ninguno seleccionado');
else
alert('Se seleccionó al menos uno');
}