Greetings
Hello
Goodbye
\\
$( ".inner" ).after( "Test
" );
결과\\
Greetings
Hello
Test
Goodbye
Test
==== before() ====
The before() method inserts specified content in front of (before) the selected elements.\\
before() 메소드는 선택된 요소의 앞에 특정 내용을 삽입한다.
\\
Greetings
Hello
Goodbye
\\
$( ".inner" ).before( "Je t'aime
" );
결과\\
Greetings
Je t'aime
Hello
Je t'aime
Goodbye
==== append() ====
The append() method inserts specified content at the end of the selected elements\\
append() 메소드는 선택된 요소의 끝(자식 요소)에 특정 내용을 삽입한다.
\\
Greetings>/h2>
Hello
Goodbye
\\
$('.inner').append('Test
');
결과\\
Greetings>/h2>
Hello
Test
Goodbye
Test
\\
==== prepend() ====
The prepend() method inserts specified content at the beginning of the selected elements.\\
prepend() 메소드는 선택된 요소의 시작(자식 요소)에 특정 내용을 삽입한다.
\\
Greetings
Hello
Goodbye
\\
$( ".inner" ).prepend( "Tiger
" );
결과\\
Greetings
Tiger
Hello
Tiger
Goodbye
{{tag> 오션 jQuery before after prepend append}}