我正在尝试验证信用卡安全号码,我已将最大长度设置为 3,但我需要确保用户输入至少 3,但我找不到任何最小长度的方法来做到这一点。
安全:<input type="text" name="secno" maxlength="3">
var n=document.forms["myForm"]["secno"].value;
if (n==null || n=="" || isNaN(n)) {
alert("Security number needed");
return false;
}