Blog Content

    티스토리 뷰

    38.jQuery - InsertAlter ( 05.Maripulation - 02.InsertAlter )

    반응형
    InsertAlter : 검색된 요소 뒤에 추가하기

    02.InsertAlter.htm

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

        <title>DOM 요소의 /뒤에 요소 추가</title>

        <style type="text/css">

            .Chapter{ background-color:Silver; }

            .Content{ height:100px; border:1px solid red; }

        </style>

       

        <script src="../jQuery/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>

        <script type="text/javascript">

            $(document).ready(function() {

                //[1] 내용 뒤에 구분선(<hr/>) 삽입

                $('<hr />').insertAfter(".Content");

     

                //[2] TOP 링크를 Chapter 앞에 추가

                $('p.Chapter:gt(0)').before("<a href='#'>TOP</a>");

                //Top클릭시 위로 이동 :.Chapter:gt(0)'인덱스 설정 하여 첫번째 제외

            });

        </script>   

    </head>

     

    <body>

        <p class="Chapter">1</p>

            <div class="Content">

                내용...

            </div>

     

        <p class="Chapter">2</p>

            <div class="Content">

                내용...

            </div>

     

        <p class="Chapter">3</p>

            <div class="Content">

                내용...

            </div>

    </body>

    </html>


    결과확인

    [그림38-1]



    반응형

    Comments