Mysql
 sql >> Database >  >> RDS >> Mysql

AJAX verifica in tempo reale la disponibilità con il pulsante di invio

Invece di utilizzare un gestore di clic per il pulsante, utilizza l'evento di invio del modulo.

$(document).ready(function () {
    $('#username').change(function () {
        var userName = $('#username').val();

        $.post("getUserName.php", {
            userName: userName
        }, function (data) {
            $("#userNameCheck").html(data);
        });
    });

    $('#addform').submit(function () {
        //if the text is `You can use it` allow the form submit else block it
        return $("#userNameCheck").html().trim() == 'You can use it';
    });
});

Assicurati anche di eseguire la stessa convalida in test2.php perché la convalida lato client può essere ignorata.