0

我制作了一个简单的程序来模拟使用 AJAX 和 PHP 的身份验证。以下是我的代码。它将重定向到“/?” 但什么也没发生。我尝试checkLogin(); return false;onclick事件中使用,但它没有用。

索引.php

<script type="text/javascript" src="validation.js"></script>
<form>
    <p>
        <label>Username <abbr title="Required">*</abbr></label>
        <input id="usernamelogin" type="text" value="" />
    </p>
    <p>
        <label>Password <abbr title="Required">*</abbr></label>
        <input id="passwordlogin" type="text" value="" />
    </p>                
    <p>
        <input id="login" type="submit" value="Login" onclick="checkLogin()" />
    </p>
</form>

验证.js

function checkLogin(){
    var u = document.getElementById("usernamelogin").value;
    var p = document.getElementById("passwordlogin").value;

    if(window.XMLHttpRequest){
        xmlhttp = new XMLHttpRequest();
    }
    else{
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }

    xmlhttp.onReadystatechange = function(){
        if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
            if(xmlhttp.responseText == u){
                alert(':)');
            }
            else{
                alert(':(');
            }
        }
    }

    xmlhttp.open("GET", "login.php?u=" + u + "&p=" + p, true);
    xmlhttp.send(); 
}

登录.php

<?php
    $u = $_GET['u'];
    $p = $_GET['p'];

    $host = 'localhost';
    $user = 'root';
    $pass = '';
    $db = 'db';

    $con = mysql_connect($host, $user, $pass);
    if(!$con) die("Could not connect: " . mysql_error());

    mysql_select_db($db, $con);
    $query = "select username from login where username = '" . $u . "' and password = '" . $p . "'";
    $result = mysql_query($query);
    $row = mysql_fetch_array($result);
    echo $row['username'];
    mysql_close($con);
?>
4

2 回答 2

2

我更改以下代码

xmlhttp.onReadystatechange

xmlhttp.onreadystatechange

它有效。并且还用于onclick="checkLogin(); return false;"输入type="submit"

于 2013-03-20T01:04:24.510 回答
0

您可以做的是从输入 type="submit" 中删除 onclick 事件并将其添加到表单中:

<form onsubmit="return checkLogin()">

要让它工作,你必须添加

return false

到你的javascript函数,就在你关闭函数之前

于 2013-03-20T00:23:19.273 回答