0
$.validator.addMethod("noanon", function(value) {
return ajaxFunction();
}, 'Username already exists.');

addMethod 函数接受 3 个参数。名称,实际运行的逻辑,最后,用于失败的默认消息。

name: {
 required: true,
 minlength: 2,
 noanon: true
},

现在,如果我使用 ajaxFunction,似乎会出现一些错误。

4

1 回答 1

1

您可以使用remote方法:

rules: {
    name: {
        remote : "script.php"
    }
},
messages: {
    name: {
        remote : "Page with this name is exists"
    }
}

在 PHP 中,您采用$_GET['name'].

附加信息在这里

于 2012-08-07T13:45:07.493 回答