아래와 같은 함수를 정의한다.

function checkLen(pwd) {
	len = pwd.value.length
	if(len < 4 || len > 8) {
		alert("비밀번호는 4자 이상 8자 이하로 입력하세요.")
		return false;
	}
	else
		return ture;
}


사용방법은 아래와 같다.

onclick="chexkLen(form1.pwd)"


+ Recent posts