======Javascript HTML DOM insertBefore() Method======
- Coffee
- Tea
Click the button to insert an item to the list.
Example explained
First create a LI mode,
then create a Text node,
then append the Text nodeto the LI node.
Finally insert the LI node before the first child node in the list.
=====Definition and Usage=====
%%insertBefore()%% 메서드는 지정한 기존 자식 요소 바로 앞에, 노드를 자식 요소로 삽입합니다.\\
\\
**Tip:** 텍스트가 있는 새 목록 항목을 만들려면, %%
node.insertBefore(newnode, existingnode)
=====Parameter Values=====
| Parameter ^ Type ^ Description ^
| newnode | Node object | 필수입니다. 삽입하려는 노드 객체 |
| existingnode | Node object | 필수입니다. 새로운 노드를 삽입하려는 곳의 아래에 있는 기존의 자식 노드. |
| ::: | ::: | ''%%null%%''로 설정되면, insertBefore는 끝에 새 노드를 삽입합니다. |
=====Technical Details=====
Return Value : 노드 객체이며, 삽입된 노드를 나타냅니다.\\
=====More Examples=====
====Example====
한 목록에서 다른 목록으로 %%
- Coffee
- Tea
- Water
- Milk
Click the button to move an item from one list to another
{{tag>오션, Javascript HTML DOM insertBefore() Method}}