tinymce.init({
selector: 'css선택자',
integration options...
});
auto_focus: '요소의 id값'
-
에디터가 생성된 후 포커스를 해당 에디터로 자동으로 맞춰준다.
init_instance_callback : function(editor) {}
- 에디터 객체가 초기화 된 후의 콜백함수를 지정할 수 있다.
plugins
- TinyMCE가 로드할 때 로드할 플러그인을 지정한다.
- 기본적으로 TinyMCE는 플러그인을 로드하지 않는다.
- 여러개의 플러그인을 로드할 때는 구분자를 ' ' 공백으로 작성한다.
자주 사용하는 플러그인 목록
plugins: [
'advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker',
'searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking',
'table emoticons template paste help'
]
setup: function(editor) {}
- 에디터가 로드되기 전의 콜백함수를 지정할 수 있다.
'Web-Front > TinyMCE' 카테고리의 다른 글
[TinyMCE] Content appearance options 종류 (에디터에 커스텀 스타일 적용하는 방법) (0) | 2020.05.29 |
---|---|
[TinyMCE] User Interface options 종류 (0) | 2020.05.28 |
[TinyMCE] textarea 값 가져오는 방법 (0) | 2020.05.27 |
[TinyMCE] 라이브러리로 textarea 변경하기 (0) | 2020.05.27 |