Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Document.designMode

현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.

 

Summary

document.designMode는 전체 document의 편집 가능 여부를 제어합니다. 유효한 값은 "on" 과 "off" 입니다. 명세에 따르면, 이 속성은 기본적으로 "off"로 설정되어 있습니다. Firefox는 이 표준 명세를 따릅니다. Chrome과 IE의 초기 버전들에서는 "inherit" 로 설정되어 있습니다. IE6-10 브라우저에서는, 값이 대문자로 표기됩니다.

Syntax

var mode = document.designMode;
document.designMode = "on";
document.designMode = "off";

Example

<iframe>의 document를 편집 가능하게 설정합니다.

iframeNode.contentDocument.designMode = "on";

Specifications

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'designMode' in that specification.
Living Standard Initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) (Yes) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? ? ? ? ? ?

See also

문서 태그 및 공헌자

 이 페이지의 공헌자: dragmove
 최종 변경: dragmove,