我正在浏览一些javascript和jQuery示例以及我在下面的代码中遇到的一些但我完全无法理解。我想知道它试图验证的条件是什么。
function checkPostCode(toCheck)
{
var alpha1 = "[abcdefghijklmnoprstuwyz]"; // Character 1
var alpha2 = "[abcdefghklmnopqrstuvwxy]"; // Character 2
var alpha3 = "[abcdefghjkpmnrstuvwxy]"; // Character 3
var alpha4 = "[abehmnprvwxy]"; // Character 4
var alpha5 = "[abdefghjlnpqrstuwxyz]"; // Character 5
var pcexp = new Array ();
pcexp.push (new RegExp ("^(" + alpha1 + "{1}" + alpha2 + "?[0-9]{1,2})(\\s*)([0-9]{1}" + alpha5 + "{2})$","i"));
pcexp.push (new RegExp ("^(" + alpha1 + "{1}[0-9]{1}" + alpha3 + "{1})(\\s*)([0-9]{1}" + alpha5 + "{2})$","i"));
pcexp.push (new RegExp ("^(" + alpha1 + "{1}" + alpha2 + "{1}" + "?[0-9]{1}" + alpha4 +"{1})(\\s*)([0-9]{1}" + alpha5 + "{2})$","i"));
pcexp.push (/^(GIR)(\s*)(0AA)$/i);
pcexp.push (/^(bfpo)(\s*)([0-9]{1,4})$/i);
pcexp.push (/^(bfpo)(\s*)(c\/o\s*[0-9]{1,3})$/i);
pcexp.push (/^([A-Z]{4})(\s*)(1ZZ)$/i);
var postCode = toCheck;
var valid = false;
for ( var i=0; i<pcexp.length; i++) {
if (pcexp[i].test(postCode)) {
pcexp[i].exec(postCode);
postCode = RegExp.$1.toUpperCase() + " " + RegExp.$3.toUpperCase();
postCode = postCode.replace (/C\/O\s*/,"c/o ");
valid = true;
break;
}
}
if (valid) {return postCode;} else return false;
}
答案 0 :(得分:1)
一般来说,这被称为&#34;客户端验证&#34;。
有几个正则表达式被添加到数组pcexp
。 for()
循环检查数组中的每个正则表达式,一次检查一次,以查看postCode
是否与模式匹配。
&#34;如果postCode
与当前正则表达式匹配,那么#34;是循环中的if()
语句所说的。
最后的if()
语句检查postCode
是否与循环中的模式匹配,从而导致valid
设置为true。