HTML标记;

<div id="address" class="col s12">
    <div class="row">
        <form method="post" action="" id="addressDetails">
            <div class="input-field col s6">
                <textarea id="lAddress" name = 'lAddress' minlength='20' maxlength='100' class="materialize-textarea" class="validate" required length="100"></textarea>
                <label for="lAddress" data-error="Must be between 20 to 100 Characters">Local Address</label>
            </div>
            <div class="input-field col s6">
                <textarea id="pAddress" name = 'pAddress' minlength='20' maxlength='100' class="materialize-textarea" class="validate" required length="100"></textarea>
                <label for="pAddress" data-error="Must be between 20 to 100 Characters">Permanent Address</label>
            </div>
        </form>
    </div>
    <div class="row center-align">
        <button type="submit" name="submitAddress" form="addressDetails" class="waves-effect waves-light light-blue darken-1 btn updateProfile">Save Address Details</button>
    </div>
</div>


JavaScript代码:

function updateProfile(event) {
    console.log(this);
    event.preventDefault();
    form = $(this).closest('.col.s12').find('form');
    $.ajax('profile/updateProfile.php', {
        type: "POST",
        dataType: "json",
        data: form.serialize(),
        success: function(result) {
            Materialize.toast(result.message, 4000);
        },
        error: function() {
            Materialize.toast("Failed: Please contact admin.", 4000);
        },
        timeout: 5000
    });
}

$(document).ready(function() {
    $("button.updateProfile").on('click', updateProfile);
});


较早的具有正常表单提交验证的功能正在起作用。但是现在有了jQuery AJAX请求,我就能够发送数据,但是当表单无效时,它会以红色显示错误,但会接受带有错误的表单。

当我使用$("button.updateProfile").on('sumbit', updateProfile);时,它正在验证,但是它正在重新加载页面,并且preventDefault无法正常工作。

最佳答案

$("button.updateProfile").on('click', updateProfile);

这将无法在实现验证的帮助下进行验证。您必须寻找submit

再次提交将有问题,它不是在寻找表单提交。

$("button.updateProfile").on('sumbit', updateProfile);

而不是按钮使用表单,然后将查找表单提交。像这样

$("form").on('submit', updateProfile);

这将完美地工作。

因此,请记住,无论何时提交表单检查,都是在表单上而不是在提交按钮上进行提交。

09-28 07:58