====== HTML DOM appendChild() Method ======
Click the button to append an item to the end of the list. Note: Click the button to move an item from one list to another.
\\
Before appending:\\
* Coffee
* Tea
\\
After appending:\\
* Coffee
* Tea
* Water
=====Definition and Usage=====
%%appendChild()%% 메서드는 하나의 노드를 노드의 마지막 자식으로 추가합니다.\\
\\
**Tip:** 텍스트가 있는 새 단락(paragraph)을 만들려면, 단락에 추가하는 텍스트 노드로 텍스트를 만든 다음, 문서에 단락을 추가해야 합니다.\\
\\
이 메서드를 사용하여 한 요소에서 다른 요소로 요소를 이동할 수도 있습니다 ("추가 예제"참조).\\
\\
**Tip:** %%insertBefore()%% 메서드를 사용하여 지정된 기존 자식 노드 앞에 새 자식 노드를 삽입합니다.\\
=====Syntax=====
First create an LI node,
then create a Textnode,
then append the Text node to the LI node.
Finally append the LI node to the list.
node.appendChild(node)
=====Parameter Values=====
| Parameter ^ Type ^ Description ^
| node | Node Object | 필수입니다. 첨부하려는 노드 객체입니다. |
=====Technical Details=====
Return Value: 첨부된 노드를 나타내는 노드 객체\\
=====More Examples=====
목록 항목(list item)을 한 목록에서 다른 목록으로 이동:\\
Before appending:\\
* Coffee
* Tea
* Water
* Milk
\\
After appending:\\
* Coffee
* Tea
* Milk
* Water
\\
====Example====
%%
%% 요소를 만들고 %%
Click the button to create a P element with some text, and append it to DIV.
A DIV element
Example explained:
First create a P node,
then create a Text node,
then appendthe Text node to the P node.
Finally,get the DIV element with id="myDIV", and append the P node to DIV.
====Example====
일부 텍스트가 포함된 %%%% 요소를 만들고, 그 요소를 문서 본문(body) 끝에 추가합니다.\\
{{tag>오션 HTML DOM appendChild() Method}}