Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/11/2009, 00:13
ManatiKo
 
Fecha de Ingreso: noviembre-2009
Mensajes: 11
Antigüedad: 15 años
Puntos: 0
Exclamación validar varios radios

saben tengo que hacer una búsqueda avanzada pero no me quiere salir...
aqui esta el codigo completo para que no se enrreden ...

Código:
<html>
<script language="JavaScript">
fuction Valida()
{
	switch(form2.se)
	{
		case 0:
			alert("seleccione alguna opcion");
			return false;
			break;
		case 1:
			if(form2.stip.value == 0)
				{
					alert("debe seleccionar alguna opciond ela lista");	
					document.form2.stip.focus();
					return false;
				}
			break;
		case 2:
			if(form2.smarc.value == 0)
				{
					alert("debe seleccionar alguna opciond ela lista");	
					document.form2.smarc.focus();
					return false;
				}
			break;
		case 3:
			if(form2.smodel.value.length == 0)
				{
					alert("debe seleccionar alguna opciond ela lista");	
					document.form2.smodel.focus();
					return false;
				}
			break;
		cese 4:
			if(form2.de.value.length == 0 || form2.hasta.value.length == 0)
				{
					alert("debe seleccionar alguna opciond ela lista");	
					document.form2.de.focus();
					return false;
				}
			break;
		case 5:
			 if(form2.sdist.value == 0)
				{
					alert("debe seleccionar alguna opciond ela lista");	
					document.form2.sdist.focus();
					return false;
				}
			 break;
	}
	return true;
}
</script>



<body bgcolor="black">
<center>
<img src="images/avanzada.jpg"
<font color="white">
        <form action="Busqueda/avanzada2.php" method="post" id="form2" name="form2" onsubmit="return Valida(this)">
                <input type="radio" name="se" value="1">&nbsp;
                Tipo<select name="stip">
                        <option value="0">_-seleccione tipo-_</option>
                        <option value="notebooks">notebooks</option>
                </select><br><br>
                <input type="radio" name="se" value="2">&nbsp;
                Marca<select name="smarc">
                        <option value="0">_-seleccione marca-_</option>
                        <option value="compaq">Compaq</option>
                        <option value="hp">Hp</option>
                        <option value="packard bell">Packard bell</option>
                        <option value="vaio">Vaio</option>
                </select><br><br>
                <input type="radio" name="se" value="3">&nbsp;
                Modelo <input type="text" name="smodel"><br><br>
                <input type="radio" name="se" value="4">
                Rango precio De:<input type="text" name="de"><br>
		Hasta:<input type="text" name="hasta"><br><br>
                <input type="radio" name="se" value="5">&nbsp;
                Distribucion<select name="sdist">
                        <option value="0">_-seleccione distribucion-_</option>
                        <option value="debian">Debian</option>
                        <option value="fedora">Fedora</option>
               </select><br><br>
                <input type="submit" name="submit">
</font>
</center>
</form>
</body>
</html>
quisas seria mejor usar "if" que dicen ustedes??