======Javascript HTML DOM createTextNode() Method======
Click the button to create a Text Node.
\\
%%HTML%% 요소는 종종 요소 노드(element node)와 텍스트 노드(text node)로 구성됩니다.\\
\\
헤더(예:%%
Click the button to create a h1 element with some text.
=====Definition and Usage=====
%%createTextNode()%% 메서드는 지정된 텍스트로 텍스트 노드를 만듭니다.\\
\\
**Tip:** %%createElement()%% 메서드를 사용하여 지정된 이름을 가진 요소 노드를 만듭니다.\\
\\
**Tip:** 텍스트 노드가 생성된 후, %%element.appendChild()%% 또는 %%element.insertBefore()%% 메서드를 사용하여 텍스트 노드를 요소에 추가합니다.\\
=====Syntax=====
document.createTextNode(text)
=====Parameter Values=====
| Parameter ^ Type ^ Description ^
| text | String | 필수입니다. 텍스트 노드의 텍스트 |
=====Technical Details=====
Return Value: 생성된 텍스트 노드를 가진 텍스트 노드 객체\\
=====More Examples=====
====Example====
텍스트가 있는 %%%% 요소를 생성합니다:\\
Click the button to create a p element with some text, and append it to DIV
{{tag>오션, Javascript HTML DOM createTextNode() Method}}