0

嗨,我如何阻止用户电子邮件扩展名进行注册?例如,我不希望用户使用此电子邮件扩展名进行注册@example.com。magento 中是否有默认方法来完成此操作?

4

1 回答 1

0

您可以使用正则表达式添加一个新类来验证客户输入的 example.com 域。

只需像这样将它添加到您的validation.js

/@example.com\s*$/.test(mystring)
is true if the string ends in @example.com (plus optional whitespace).

希望这对你有帮助。

于 2013-07-22T03:21:44.930 回答