제목 : 주요 자바스크립트 활용 코드 : 패스워드 길이 검사
글번호:
|
|
206
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2004/07/22 오전 11:57:00
|
조회수:
|
|
6170
|
//[8] 패스워드 길이 검사
function IsPassword( strPassword )
{
var bRetNo;
// check for all numbers and length 4 and 8
if ( strPassword.length >= 4 && strPassword.length <= 8 )
{
if ((strPassword == document.MyForm.UserID.value) || (strPassword == "1234") || (strPassword == document.MyForm.UserID.value + "1234"))
{
return false;
}
bRetNo = true;
}
else
{
bRetNo = false;
}
return bRetNo;
}