======Javascript HTML DOM textContent Property======
Click the button to get the text content of the button element. Note: The textContent property is not supported in Internet Explorer 8 and earlier.
=====Definition and Usage=====
%%textContent%% 속성은 지정된 노드 및 모든 하위 항목의 텍스트 콘텐츠를 설정하거나 반환합니다.\\
\\
%%textContent%% 속성을 설정하면, 모든 자식 노드가 제거되고 지정된 문자열을 포함하는 단일 텍스트 노드로 대체됩니다.\\
\\
**Note:** 이 속성은 %%innerText%% 속성과 비슷하지만 몇 가지 차이점이 있습니다.\\
* %%textContent%%는 모든 요소의 텍스트 콘텐츠를 반환하는 반면, %%innerText%%는 %%
====Example====
%%id="myList"%%를 가진 %%
- Coffee
- Tea
Click the button to get the text content of the ul element.
Note: Textual content includes the text of all child nodes as well.
Note: The textContent property is not supported in Internet Explorer 8 and earlier.
====Example====
다음의 예제는 %%innerText, innerHTML, 그리고 textContent%% 사이의 일부 차이점을 보여줍니다.\\
Differnece between innerText, innerHTML, and textContent
This element has extra spacing, and contains a span element.
Note: The textContent property is not supported in Internet Explorer 8 and earlier,
and the innerText property is not supportedin IE9 and earlier.
\\
지정된 속성을 사용하여 위의 %%%% 요소의 콘텐츠를 가져옵니다.\\ \\ **%%innerText%%** 반환 : "This element has extra spacing, and contains a span element."\\ **%%innerHTML%%** 반환 : " This element has extra spacing, and contains a span element."\\ **%%textContent%%** 반환 : " This element has extra spacing, and contains a span element."\\ %%innerText%% 속성은 공백 및 내부 요소 태그 없이 텍스트만 반환합니다.\\ %%innerHTML%% 속성은 모든 공백 및 내부 요소 태그를 포함하여 텍스트를 반환합니다.\\ %%textContent%% 속성은 간격은 있지만 내부 요소 태그는 없는 텍스트를 반환합니다.\\ {{tag>오션, Javascript HTML DOM textContent Property}}