value 와 value.length check 시 실수하기쉬운것

By | 2월 20, 2009

[출처] value 와 value.length check 시 실수하기쉬운것|작성자 선장님

NULL값및 Length  Check시 주의 할점이 있다.
그냥 일반적으로 True를 체크할때는 별 무리가 없으나 False체크를 할때
범하기 쉬운실수로 눈을크게 안뜨면 모르고 그냥 넘어가버릴수도 있다.

if (!document.InfoForm.fullBirthday.value == ""){
//값이 있을경우 다음사항 확인  

      if (!document.InfoForm.fullBirthday.value.length==6){
       //  이렇게 해놓고 한참 해맸음..ㅋㅋ

         if (!(document.InfoForm.fullBirthday.value.length==6)){
          alert("생년월일을 확인 하여 주십시요");
        return false;
      }
}

 순간적으로 범하기 쉬운 구문이라 적어 놓습니다..
이렇게 한번 적으므로써 다시는 잊지 않으리라~~

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments