0
rules: {
firstname: "required",
lastname: "required",
birthdate: {
date: true,
required: true,
minimumAge: true
},
consent: {
required: function(element) {
return getAge($("#birthdate").val()) < 18;
$("#consent").show();
}
}
});
$("#consent").hide();
ユーザーの年齢が18歳未満の場合は、同意するためのチェックボックスを表示します。jqueryの検証で特定のフィールドを隠して表示しています
最初の回答は機能しますが、< to >を逆にしても機能しません。これは、OPのコードの逆を返します。 – Marius
ええ、私は当初彼が望んでいたものに混乱していました。もし彼がそれを望んでいれば、私は彼がしなければならなかったすべてのことを誤解しました。 –