6

目标:
第 1 步:在 JQuery 对话框中打开一个表单。用户输入用户名和密码,点击登录。 第 2 步: Ajax 将数据发送到服务器端脚本,在我的例子中是 loginproc.php。
第 3 步:使用 loginproc 验证登录。如果登录成功,用户将被重定向到一个页面。
第 4 步:否则,将向对话框发送一条消息,并将其附加到对话框本身以及抖动效果。

到目前为止,如果我使用 '$("#admin-form").sumbit();',第一步和第三步工作正常 就在关闭对话框之前。我不确定如何在对话框中设置无效的登录文本。

代码:

$(function() {
    var name = $("#name"),
            password = $("#password"),
            allFields = $([]).add(name).add(password),
            tips = $(".validateTips");

    function updateTips(t) {
        tips
                .text(t)
                .addClass("ui-state-highlight");
        setTimeout(function() {
            tips.removeClass("ui-state-highlight", 1500);
        }, 500);
    }

    function checkLength(o, n, min, max) {
        if (o.val().length > max || o.val().length < min) {
            o.addClass("ui-state-error");
            updateTips("Length of " + n + " must be between " +
                    min + " and " + max + ".");
            return false;
        } else {
            return true;
        }
    }

    function checkRegexp(o, regexp, n) {
        if (!(regexp.test(o.val()))) {
            o.addClass("ui-state-error");
            updateTips(n);
            return false;
        } else {
            return true;
        }
    }

    $("#login-form").dialog({
        autoOpen: false,
        /*      height: 300, */
        width: 450,
        show: {
            effect: "explode",
            duration: 1000
        },
        hide: {
            effect: "explode",
            duration: 1000
        },
        modal: true,
        buttons: {
            "Login": function() {
                var bValid = true;
                allFields.removeClass("ui-state-error");

                bValid = bValid && checkLength(name, "username", 3, 16);
                bValid = bValid && checkLength(password, "password", 5, 32);
                bValid = bValid && checkRegexp(name, /^[a-z]([0-9a-z_])+$/i, "Username may consist of a-z, 0-9, underscores, begin with a letter.");
                bValid = bValid && checkRegexp(password, /^([0-9a-zA-Z_])+$/, "Password field only allow : a-z 0-9");
                if (bValid) {
                    $("#admin_login").submit();
                    $(this).dialog("close");
                }
            },
            Cancel: function() {
                $(this).dialog("close");
            }
        },
        close: function() {
            allFields.val("").removeClass("ui-state-error");
        }
    });

    // Link to open the dialog
    $("#admin-link").click(function(event) {
        $("#login-form").dialog("open");
        event.preventDefault();
    });

});

这是我需要进行一些更改的代码部分。

if (bValid) {
     $("#admin_login").submit();
     $(this).dialog("close");
}

请帮我解决这个问题

更新: 表格:

<form method="post" action="class/loginproc.php" id="admin_login">
<fieldset>
 <label for="name">Username</label>
<input type="text" name="user" id="name" class="text ui-widget-content ui-corner-all" />
 <label for="password">Password</label>
<input type="password" name="pass" id="password" value="" class="text ui-widget-content ui-corner-all" />
</fieldset>
</form>

登录过程.php

<?php

require_once 'utils.php';
if (is_null($_POST['user']) || is_null($_POST['pass'])) {
    utils::redirect_url("../index.php");
} else {
    $utils = new utils();
    $username = $_POST['user'];
    $password = $_POST['pass'];
    $type = 'admin';
    $response = $utils->validate_user($username, $password, $type);
    if ($response == true) {
        return true;
        /*
          $utils->login_redirect($type); */
    } else {
        return false;
        /* $_SESSION['valid'] = false;
          utils::redirect_url("../index.php"); */
    }
}
?>

jQuery:

 if (bValid) {
 var data = $('#admin_login').serialize();
 $.ajax({
 url: "class/loginproc.php",
 type: "post",
 data: data,
 dataType: "json",
 success: function(data) {
 if (data.success) {
   window.location = "../admin.php";
 }
 else {
   alert('Invalid Login');
  }
 }
                });
                $(this).dialog("close");
            }

解决方案: 感谢 'Mohammad Adil' ,我能够解决这个问题。我不得不稍微改变他提供的解决方案以获得适当的结果。因此,我将其发布在这里以供将来参考。
查询

  if (bValid) {
     var data = $('#admin_login').serialize();
     $.ajax({
     url: "class/loginproc.php",
     type: "post",
     data: data,
     dataType: "json",
     success: function(data) {
      window.location = "admin.php";
     },
     error: function(data) {
       alert('invalid');
     }
   });
   $(this).dialog("close");
  }

登录过程:

  $response = $utils->validate_user($username, $password, $type);
    if ($response == true) {
        echo true;
    } else {
        echo false;
    }

问候
Genocide_Hoax

4

2 回答 2

2
 if (bValid) {
    var data = $('#admin_login').serialize();                  
          $.ajax({
              url:"loginproc.php",
              type: "post",
              data : data,
              dataType:"text",
              success:function(data){
                  if(data == "true"){ 
                    window.location = "some location";
                  }
                 else{
                       // LOGIN FAILED
                 }
              }
           });
         $(this).dialog("close");
 }
于 2013-04-13T10:32:03.930 回答
1

您将方法和动作放在表单中,我认为如果使用 Ajax 应该省略,因为如果不省略,数据将不会异步发送。

于 2013-06-19T13:02:12.367 回答