I noticed that the built-in browser validation for <input type="email" />
requires a format of xxx@xxx
. Only the @
character is required. There is no need to a dot, like [email protected]
.
It is the same with the popular jQuery.inputmask, the rule of email
alias does not require the dot, either.
I am just curious. Is it a standard way to ignore the dot in email validation now? I haven't seen any email address on the root level domain. What is the reason to ignore the dot?
@
could be an email, evenbill@com
, which is why validating too strict tend to lead to problems. – Emee