투케이2K

38. (jquery/제이쿼리) type 사용해 변수 및 데이터 타입 확인 수행 실시 본문

Jquery

38. (jquery/제이쿼리) type 사용해 변수 및 데이터 타입 확인 수행 실시

투케이2K 2022. 7. 27. 20:13

[개발 환경 설정]

개발 툴 : Edit++

개발 언어 : jquery

 

[소스 코드]

    <!-- [자바 스크립트 및 j쿼리 파일 CDN 설정] -->
    <script src="https://code.jquery.com/jquery-latest.min.js"></script>
    




    <!-- [내부 자바스크립트 J쿼리 이벤트 지정] -->    
    <script>


        /*
        // -----------------------------------
        [요약 설명]
        // -----------------------------------
        1. type : 변수 및 데이터 타입을 확인 할 수 있습니다
        // -----------------------------------
        2. type(변수 및 데이터) 방식으로 문법을 사용합니다
        // -----------------------------------
        */



        // [dom 생성 및 이벤트 상시 대기 실시] 
        $(document).ready(function(){
            console.log("");
            console.log("[window ready] : [start]");            
            console.log("");
        }); 






        // [html 최초 로드 및 이벤트 상시 대기 실시] 
        $(window).load(function(){
            console.log("");
            console.log("[window onload] : [start]");
            console.log(""); 


            // [테스트 함수 호출]
            testMain();
        });





        // [테스트 함수 선언 실시]
        function testMain(){
            console.log("");
            console.log("[testMain] : [start]");
            console.log(""); 


            // [초기 변수 선언 실시]
            var strData = "hello";
            var boolData = true;
            var intData = 10;



            // [type 사용해 타입 확인 실시]
            var strType = $.type(strData);
            var boolType = $.type(boolData);
            var intType = $.type(intData);



            // [결과 출력 실시]
            console.log("");
            console.log("[testMain] : [result]");
            console.log("[strType] : " + strType);
            console.log("[boolType] : " + boolType);
            console.log("[intType] : " + intType);
            console.log(""); 

        };


    </script>
 

[결과 출력]

 

 

반응형
Comments