자리 표시 자 아이콘은 도구 모음에 자동으로 표시되지만 실제로는 표시되지 않습니다. 다른 모든 것은 잘 작동합니다. 매우 간단한 구현입니다. 왜 그게 빠졌지 ??CKEditor 자리 표시 자 아이콘이 도구 모음에 표시되지 않음
JAVASCRIPT 설정 파일
CKEDITOR.editorConfig = function (config) {
config.height = 500;
config.toolbar = 'MyToolbar';
config.extraPlugins = "placeholder";
config.extraPlugins = "widget";
};
HTML
<textarea id="editor1" cols="80" name="editor1" rows="10">Hello world</textarea>
<script>
CKEDITOR.replace("editor1", {});
</script>