Magento阻止用户电子邮件扩展

时间:2013-07-22 02:22:13

标签: magento

您如何阻止用户电子邮件扩展程序进行注册?例如,我不希望用户使用此电子邮件扩展名@example.com进行注册。是否有magento的默认方式来完成这项工作?

1 个答案:

答案 0 :(得分:0)

您可以添加一个带有正则表达式的新类,以验证客户输入的example.com域名。

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

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

希望这对您有所帮助。