创建jQuery验证并将页面重定向到其他地址

时间:2011-07-25 20:30:11

标签: javascript jquery-selectors jquery-validate jquery

如何创建一个jQuery验证,点击按钮提交页面后重定向到另一个地址? 请给我一个每个jQuery验证的例子(如:空字段(输入))

尊重

1 个答案:

答案 0 :(得分:0)

要重定向到其他页面:

window.location.href = '/another-page';

就验证而言,我非常强烈建议您查看jquery validate plugin。这是事实上的标准,用于为不想重新发明轮子的人执行HTML表单的客户端验证。

因此,对于那些想要重新发明轮子的人来说,这就是他们能做的事情:

$(function() {
    $('#myform').submit(function() {
        var myField = $('#myInput').val();
        if (myField == '') {
            alert('my field is required');
            return false;
        }
        // at this stage we know tat the form is valid as the user
        // filled the required myField. Now we can redirect
        window.location.href = '/another-page';
        return false;
    });
});