value 와 value.length check 시 실수하기쉬운것
[출처] 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(“생년월일을 확인 하여… Read More »