我想驗證一個信用卡安全號碼,我已經設置了最大長度爲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;
}
我不熟悉JavaScript,但一般編碼是沒有辦法做一個if n.length <3然後告訴他們「安全號無效」 – leigero