如何禁止纯数字注册

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

用户名禁止纯数字注册,是在哪里修改?

回答:
简单的修改是在 js里面修改下,然后可以在PHP页面也做相关的判断

能具体点吗

js以及php里面正则处理下\d+

var msg = '';
if (username.length == 0)
{
msg += username_empty + '\n';
}
else if (username.match(/^\s*$|^c:\\con\\con$|[%,\'\*\"\s\t\<\>\&\\]/))
{
msg += username_invalid + '\n';
}
else if (username.length < 3)
{
//msg += username_shorter + '\n';
}

如何改?