aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcress00 <dktsjssnrnsi@gmail.com>2022-02-23 15:12:28 +0900
committerGitHub <noreply@github.com>2022-02-23 15:12:28 +0900
commitd4ef27062f0a2f7e2632e908396c62f1e1e4b5ee (patch)
treef851c5162716aba6f0db55fce840bdcd2ec4246f
parent58204d0949ab5dc4b33e7b6478b15b30c54f5d30 (diff)
downloadtranslated-content-d4ef27062f0a2f7e2632e908396c62f1e1e4b5ee.tar.gz
translated-content-d4ef27062f0a2f7e2632e908396c62f1e1e4b5ee.tar.bz2
translated-content-d4ef27062f0a2f7e2632e908396c62f1e1e4b5ee.zip
[ko] update DOM document (#4181)
-rw-r--r--files/ko/web/api/document_object_model/introduction/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/api/document_object_model/introduction/index.html b/files/ko/web/api/document_object_model/introduction/index.html
index 4b82e96f80..36dc611499 100644
--- a/files/ko/web/api/document_object_model/introduction/index.html
+++ b/files/ko/web/api/document_object_model/introduction/index.html
@@ -12,7 +12,7 @@ original_slug: Web/API/Document_Object_Model/소개
<h2 id="What_is_the_DOM" name="What_is_the_DOM">DOM 이란?</h2>
-<p>문서 객체 모델(The Document Object Model, 이하 DOM) 은 HTML, XML 문서의 프로그래밍 interface 이다. DOM은 문서의 구조화된 표현(structured representation)을 제공하며 프로그래밍 언어가 DOM 구조에 접근할 수 있는 방법을 제공하여 그들이 문서 구조, 스타일, 내용 등을 변경할 수 있게 돕는다. DOM 은 구조화된 nodes와 property 와 method 를 갖고 있는 objects로 문서를 표현한다. 이들은 웹 페이지를 스크립트 또는 프로그래밍 언어들에서 사용될 수 있게 연결시켜주는 역할을 담당한다.</p>
+<p>문서 객체 모델(The Document Object Model, 이하 DOM) 은 HTML, XML 문서의 프로그래밍 interface 이다. DOM은 문서의 구조화된 표현(structured representation)을 제공하며 프로그래밍 언어가 DOM 구조에 접근할 수 있는 방법을 제공하여 그들이 문서 구조, 스타일, 내용 등을 변경할 수 있게 돕는다. DOM 은 nodes와 objects로 문서를 표현한다. 이들은 웹 페이지를 스크립트 또는 프로그래밍 언어들에서 사용될 수 있게 연결시켜주는 역할을 담당한다.</p>
<p>웹 페이지는 일종의 문서(document)다.  이 문서는 웹 브라우저를 통해 그 내용이 해석되어 웹 브라우저 화면에 나타나거나 HTML 소스 자체로 나타나기도 한다. 동일한 문서를 사용하여 이처럼 다른 형태로 나타날 수 있다는 점에 주목할 필요가 있다. DOM 은 동일한 문서를 표현하고, 저장하고, 조작하는 방법을 제공한다. DOM 은 웹 페이지의 객체 지향 표현이며, 자바스크립트와 같은 스크립팅 언어를 이용해 DOM 을 수정할 수 있다.</p>