WYSWYG 게시판 execCommand 명령어 옵션
Enabling Rich Text Editing:Given a document, you can add the attribute "designMode" and set it to "on" to get an editable document. For example, in JavaScript, if you have an iframe with an id of 'edit', you can get its contentDocument and set designMode to "on" like this: document.getElementById("edit").contentDocument.designMode="on"; Right now, you can't completely turn off editing by setting..