메뉴 건너뛰기

조회 수 168 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
body>
<div id="parent">
<p id="first">안녕하세요.</p>
</div>
</body>

 

▤ before

var second="<p>second</p>";
$("#first").before(second); // first 객체 앞쪽에 second 객체를 붙인다.

    <div id="parent">

        <p>second</p>

        <p id="first">안녕하세요.</p>

    </div>

 

▤ insertBefore

var second="<p>second</p>";
$(second).insertBefore("#first"); // second 객체를 first 객체의 앞쪽에 붙인다.

    <div id="parent">

        <p>second</p>

        <p id="first">안녕하세요.</p>

    </div>

 

▤ after

var second="<p>second</p>";
$("#first").after(second); // first 객체 뒤쪽에 second 객체를 붙인다.

    <div id="parent">

        <p id="first">안녕하세요.</p>

        <p>second</p>

    </div>

 

▤ insertAfter

var second="<p>second</p>";
$(second).insertAfter("#first"); // second 객체를 first 객체의 뒤쪽에 붙인다.

    <div id="parent">

        <p id="first">안녕하세요.</p>

        <p>second</p>

    </div>

 

 


하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved