투케이2K

88. (jquery/제이쿼리) for prepend 사용해 ul li 리스트 데이터 동적 추가 실시 본문

Jquery

88. (jquery/제이쿼리) for prepend 사용해 ul li 리스트 데이터 동적 추가 실시

투케이2K 2022. 12. 3. 19:36
반응형

[개발 환경 설정]

개발 툴 : Edit++

개발 언어 : jquery

 

[소스 코드]

    <!-- [CDN 라이브러리 설치] -->
    <script src="https://code.jquery.com/jquery-latest.min.js"></script>





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


        /**
         * --------------------------------
         * [요약 설명]
         * --------------------------------
         * 1. load : html 최초 로드 수행 시 호출 되는 함수입니다
         * --------------------------------
        */



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

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



        // [테스트 자바스크립트 함수]
        function testMain(){
            console.log("");
            console.log("=========================================");
            console.log("[testMain] : [start]");
            console.log("=========================================");
            console.log(""); 


            // [1] : [prepend 사용해 li 태그 동적 추가 실시 / [앞쪽] 기준으로 추가 됨]
            for (var i=4; i<=6; i++){

                // [ul 태그 특정 id 에 li 태그 추가]
                $("#list_1").prepend("<li>"+String(i)+"</li>");

            }
            
        };


    </script>
​

<body>


    <!-- [리스트 선언 실시] -->
    <ul id="list_1">
        <li>1</li>
        <li>2</li>
        <li>3</li>
    </ul>


</body>
 

[결과 출력]


 

반응형
Comments