nowCode}}
看不清,换一张
<input type="text" placeholder="请输入<em>验证码</em>..., 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'); //<em>验证码</em>要<em>随机</em>挑选的字符...for (var i = 0; i < codeLength; i++) {
let charIndex = Math.floor(Math.random() * 52); // <em>随机</em>产生...();
},
// 校验<em>验证码</em>
isLegalCode() {
if (this.inputCode == this.nowCode) {
alert("验证码正确!")...;
} else {
alert("验证码不正确,请重试!");
}
}