![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
15/04/2002, 06:35
|
![Avatar de Helbira](http://static.forosdelweb.com/customavatars/avatar6439_3.gif) | | | 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');
} |