我需要自动调用 CKEditor 的多个实例...实际上我使用该功能:
CKEDITOR.replace( 'editor1');
其中“editor1”是我想要显示我的 CKEditor 的 div 的 id 名称。
我正在使用 jQuery 来自动化这个过程,我需要使用“class”标签而不是 id。
特别是我有这个html:
<div class="CKEditor">
<div class="text">
mytext
</div>
<p style="text-align:center" class="buttons">
<input type="button" value="edit" class="button_edit">
<input type="button" value="preview" class="button_preview" style="display:none">
</p>
<div class="editor" >
</div>
</div>
和这个 jQuery 脚本:
$(function()
{
$('.CKEditor').each(function()
{
var __main = $(this);
var __buttons = __main.children('.buttons');
var __text = __main.children(".text");
var editor;
__buttons.children('.button_edit').click(function()
{
__text.hide();
if (editor) return;
editor = CKEDITOR.replace("editor");
editor.setData(__text.html());
if(editor)
{
__buttons.children('.button_edit').hide();
__buttons.children('.button_preview').show();
}
});
__buttons.children('.button_preview').click(function()
{
__text.show();
__text.html(editor.getData());
if ( !editor ) return;
editor.destroy();
editor = null;
__buttons.children('.button_edit').show();
__buttons.children('.button_preview').hide();
__main.children("#editor").html("");
});
});
});
是否可以不修改CKEDITOR的来源?
编辑
我找到了解决方案:
1)html变成:
<div class="editor" id="edt1"></div>
2)在jQuery中:
var __editorName = __main.children('.editor').attr('id');
我打电话给CKEditor:
editor = CKEDITOR.replace(__editorName);
=) =)