0

我正在尝试在我的网站中实现密码更改功能。我已经完成了所有密码更改脚本、验证等。但是现在我需要阻止页面进入脚本页面或刷新。当用户单击提交按钮时,除了显示消息successfully changederror. 所以这是我的html:

<form id="change_Pass" action="" method="post">
    Current Password<input type="password" id="change_password" name="change_password"><br>
    New Password<input type="password" id="new_password" name="new_password"><br>
    Verify Password<input type="password" id="verify_password" name="verify_password"><br>
    <input type="submit" value="Submit" id="change_pass_submit">
</form>

还有我的jQuery:

$('#change_pass_submit').click(function(){
    var $this = $(this);  
    $.ajax({
        data: $this.serialize(), // get the form data
        type: "POST", // GET or POST
        url: "/Private/change_password.php", // the file to call
        success: function() { // on success..
            //$('#success_div).html(response); // update the DIV
            alert("good");
        },
        error: function() { // on error..
            //$('#error_div).html(e); // update the DIV
            alert("bad");
        }
    });
    return false; //so it doesn't refresh when submitting the page
});

还有我的 php:

<?php
session_start();
require_once '../classes/Bcrypt.php';
ini_set('display_errors', 'On');
error_reporting(E_ALL | E_STRICT);
$usr = $_SESSION["username"];
$old_pwd = $_POST["change_password"];
$new_pwd = $_POST["new_password"];
$new_pwd = Bcrypt::hash($new_pwd);
try {
    $link = new PDO('mysql:host=*;dbname=*;charset=UTF-8','*','*');
    $query = "SELECT *
            FROM Conference
            WHERE Username = :un";

    $stmt = $link->prepare($query);

    $stmt->bindParam(':un', $usr);
    $stmt->execute();
    $row = $stmt->fetchAll();

    $hash = $row[0]["Password"];
    $is_correct = Bcrypt::check($old_pwd, $hash);
    if($is_correct) {
        $query = "UPDATE Conference
                SET `Password`=:new_pwd 
                WHERE Username = :usr";

        $stmt = $link->prepare($query);
        $stmt->bindParam(':new_pwd', $new_pwd);
        $stmt->bindParam(':usr', $usr);
        $stmt->execute();
        return true;
    } else return false;
} catch(PDOException $e) {
    print "Error!: " . $e->getMessage() . "<br/>";
    die();
}

但由于某种原因,当我点击提交按钮时,页面仍然转到change_password.php. 我不知道为什么,我看了这么多教程,我的代码与他们的一致,但由于某种原因,我的代码不会停留在同一页面上。我哪里做错了?

4

3 回答 3

0

将您的处理程序绑定到表单的submit事件:

$(document).on('click', '#change_Pass', function() {
    var $this = $(this);  
    $.ajax({
        data: $this.serialize(), // get the form data
        type: "POST", // GET or POST
        url: "/Private/change_password.php", // the file to call
        success: function() { // on success..
            //$('#success_div).html(response); // update the DIV
            alert("good");
        },
        error: function() { // on error..
            //$('#error_div).html(e); // update the DIV
            alert("bad");
        }
    });

    return false; //so it doesn't refresh when submitting the page
});
于 2012-10-21T03:36:21.297 回答
0

而不是使用$('#change_pass_submit').click(function(),使用$('#change_Pass').submit(function()

.click 仅在实际单击提交按钮时才起作用,即使用户按下回车键 .submit 也将起作用。

这应该可以解决您的错误,但未经测试。

于 2012-10-21T03:37:06.850 回答
0

尝试放置 preventDefault(); 在 .submit 执行的函数的最后一行

        $(document).ready(function(){
            $( "#cambiar_pass_form" ).submit(function() {
                $.ajax({
                    ...
                    ...
                });
                event.preventDefault();
            });
        });
于 2014-11-14T17:01:30.637 回答