Để xác thực địa chỉ email trong JavaScript, hãy kiểm tra điều kiện cho “@” và “.” tức là cho [email protected]. Hãy thử mã sau để xác thực email
Ví dụ
Bản trình diễn trực tiếp
<!DOCTYPE html> <html> <body> <script> var emailID; function validateEmail(emailID) { atpos = emailID.indexOf("@"); dotpos = emailID.lastIndexOf("."); if (atpos < 1 || ( dotpos - atpos < 2 )) { document.write("Please enter correct email ID") document.myForm.EMail.focus() ; return false; } return( true ); } document.write(validateEmail("[email protected]")); </script> </body> </html>