Ver Mensaje Individual
  #6 (permalink)  
Antiguo 22/03/2013, 08:37
Avatar de miguec04
miguec04
 
Fecha de Ingreso: agosto-2008
Ubicación: Cimitarra, Santander
Mensajes: 378
Antigüedad: 16 años, 3 meses
Puntos: 15
Respuesta: Problemas con JQuery

SIP, discúlpame, prueba con este javascript yo probé y me funciona. ajustalo yo lo modifique un poco

Código Javascript:
Ver original
  1. function validarUsuario(frm) {
  2.     var errores         = false;
  3.  
  4.     if(frm.txtMailLogin.value == "") {
  5.         alert("Debe ingresar su correo electrónico.");
  6.         frm.txtMailLogin.focus();
  7.         return;
  8.     } else {
  9.         var re  = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;        
  10.         if(!re.test(frm.txtMailLogin.value)) {
  11.             alert("La direccion de Email es incorrecta");
  12.             frm.txtMailLogin.focus();
  13.             return;
  14.         }
  15.     }
  16.     if(frm.txtClaveLogin.value == "") {
  17.         alert("Debe ingresar su contraseña.");
  18.         frm.txtClaveLogin.focus();
  19.         return;
  20.     }
  21.    
  22.     $("#txtMsg").css("display", "inline");
  23.     if(!errores) {
  24.         $.post('valUsuario.php',{txtMail:frm.txtMailLogin.value, txtClave: frm.txtClaveLogin.value},function(msj) {
  25.                 alert(msj);
  26.                
  27.                 if(msj == 'true') {
  28.                     document.getElementById("txtMsg").innerHTML = msj;
  29.                 } else {
  30.                     document.getElementById("txtMsg").innerHTML = msj;
  31.                 }
  32.         });
  33.     }            
  34. }
__________________
Desoftc Technology - Miguel Carmona
Creaciones Inteligentes - Cimitarra Colombia
[email protected]
http://www.desoftc.com.co