我在这里查看此资源:
http://jqueryvalidation.org/remote-method#options
在他们的示例代码中:
$( "#myform" ).validate({
rules: {
email: {
required: true,
email: true,
remote: "check-email.php"
}
}
});
我需要在 check-email.php 中回传或回显什么?
另外,这适用于邮寄表格吗?
我在这里查看此资源:
http://jqueryvalidation.org/remote-method#options
在他们的示例代码中:
$( "#myform" ).validate({
rules: {
email: {
required: true,
email: true,
remote: "check-email.php"
}
}
});
我需要在 check-email.php 中回传或回显什么?
另外,这适用于邮寄表格吗?
不幸的是,直到我发布它之后,这才相关: jQuery Remote validation
使用代码
echo json_encode($variable);
以这种方式传递布尔值会为 JQuery 提供有关它是否被正确破译的信息,需要注意的一点是,在引用的链接中,用户使用的是字符串而不是布尔值,这将无法正常工作。