Joren Rapini の検証コードをオンライン フォームに使用しています。ジョーレンのウェブサイト
メールアドレスが正しく入力されているかどうかを確認できますが、フォームで検証したいメールアドレスが 2 つあります。
どうすればこれを行うことができますか?
email = $("#youremail"); を追加してみました。現在コードに含まれているものと同様に、 email = $("#receiveremail"); です。しかし、それは1つだけで機能します。
$(document).ready(function(){
// Place ID's of all required fields here.
required = ["youremail", "name", "receiveremail", "message"];
// If using an ID other than #email or #error then replace it here
email = $("#receiveremail");
errornotice = $("#error");
// The text to show up within a field when it is incorrect
emptyerror = "Please fill out this field";
emailerror = "Not a vaild email";
});