고똘이의 IT 개발이야기

안녕하세요.

오늘은 null 체크 함수를 공유할려고 합니다.

 

아래의 소스를 보시면 설명이 달려 있습니다.

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<html>
    
    <head>
        <script>
 
            // id 'testBtn'이라는 버튼을 클릭 시 체크박스 검사.
            $("#testBtn").click(function(){
                
                // id 'testInput'의 value의 null 체크
                if(vali($("#testInput").val())){
                    alert("데이터가 존재하지 않습니다.");
                } else {
                    alert("데이터 존재.");
                }
                
            });
 
            // null 체크 함수(custom)
            function vali(val){
 
                if (value === nullreturn true
                if (typeof value === 'string' && value === ''return true;
                if (typeof value === 'undefined'return true;
                
                return false;
 
            }
 
        </script>
    </head>
    <body>
        <input type="text" id="testInput" value="테스트 데이터입니다."/>
 
        <input type="button" id="testBtn" />
    </body>
 
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

감사합니다.

이 글을 공유합시다

facebook twitter googleplus kakaoTalk kakaostory naver band