aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhochan Lee <hochan049@gmail.com>2021-05-23 20:19:27 +0900
committerGitHub <noreply@github.com>2021-05-23 20:19:27 +0900
commit2ea9042881df398be39b05bf9349d6ade8cc0d73 (patch)
tree27ad5f857ac91d69f2b29dcb4543f51feec21f02
parent2d42c0bc97ccc689c5467346adae1b75c1a862b0 (diff)
downloadtranslated-content-2ea9042881df398be39b05bf9349d6ade8cc0d73.tar.gz
translated-content-2ea9042881df398be39b05bf9349d6ade8cc0d73.tar.bz2
translated-content-2ea9042881df398be39b05bf9349d6ade8cc0d73.zip
[FIX] document.execcommand deprecated #151 (#940)
* [FEAT] add tags * [FEAT] add banner deprecated
-rw-r--r--files/ko/web/api/document/execcommand/index.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/files/ko/web/api/document/execcommand/index.html b/files/ko/web/api/document/execcommand/index.html
index 47ec3b3de2..fcff2469d0 100644
--- a/files/ko/web/api/document/execcommand/index.html
+++ b/files/ko/web/api/document/execcommand/index.html
@@ -1,9 +1,16 @@
---
title: Document.execCommand()
slug: Web/API/Document/execCommand
+tags:
+ - API
+ - DOM
+ - Method
+ - NeedsExample
+ - Reference
+ - editor
translation_of: Web/API/Document/execCommand
---
-<div>{{ApiRef("DOM")}}</div>
+<div>{{ApiRef("DOM")}}{{deprecated_header}}</div>
<p>HTML 문서가 <code>designMode</code>로 전환되면 문서에서 <code>execCommand</code> 메서드를 사용할 수 있게 되는데 이것을 이용해서 문서의 편집 가능한 영역을 변경할 수 있습니다. 대부분의 명령어는 문서의 선택 영역에 영향(<em>볼드, 이탤릭 등</em>)을 미치고 나머지는 새 요소를 추가(링크 추가)하거나 전체 줄에 영향(들여쓰기)을 미칩니다. <code>contentEditable</code>을 사용할 때에 <code>execCommand()</code>를 호출하면 현재 활성화된 편집 요소에 영향을 미칩니다.</p>