Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/02/2008, 09:39
Avatar de PedroJTR
PedroJTR
 
Fecha de Ingreso: febrero-2008
Ubicación: Guarenas, Venezuela
Mensajes: 116
Antigüedad: 16 años, 10 meses
Puntos: 1
Re: Validando Formulario con Div!!

Cita:
Iniciado por Bellenger Ver Mensaje
Holas, creo que [PedroJTR], se referia a algo asi...
Código:
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
  <head>
    <title>.:: Vaidacion CSS ::.</title>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  </head>
  <style type="text/css">
    .mal{
      background-color: #F08080;
      /*background-color:"#00FF00";*/
      border:1px solid red;
    }
  </style>
  <script type="text/javascript">
    function valida(){
      if(document.getElementById('nombre').value==''){
        document.getElementById('nombre').className='mal';
        return -1;
      }else{
        document.getElementById('nombre').className='';
      }
      if(document.getElementById('apellido').value==''){
        document.getElementById('apellido').className='mal';
        return -1;
      }else{
        document.getElementById('nombre').className='';
      }
      alert("Todo Ok");
    }
  </script>
  <body>
    <input type="text" name="nombre" id="nombre" /><br />
    <input type="text" name="apellido" id="apellido" /><br />
    <input type="button" name="valida" value="valida" onclick="valida()" />
  </body>
</html>
Tendrias que adaptarlo a tus necesidades, y claro reducir el codigo javascript pues si tienes varios campos, habran muchos if....
Exacto amigo... Gracias...
Y no se pudiera hacer asi como el registro en Yahoo??? Sin darle al boton enviar si no al dirigirse al siguiente campo?