在 Ckinline 中插入元素
Insert Element in Ckinline
我试过在 ckinlne 编辑器的当前光标位置插入元素。
有什么方法可以在ckinline div的当前光标位置插入Element吗?
其实很简单。在以下示例中将 editor1 替换为您的编辑器 ID:
CKEDITOR.instances.editor1.insertHtml( '<p>This is a new paragraph.</p>' );
该示例来自 http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertHtml
的官方文档
我试过在 ckinlne 编辑器的当前光标位置插入元素。 有什么方法可以在ckinline div的当前光标位置插入Element吗?
其实很简单。在以下示例中将 editor1 替换为您的编辑器 ID:
CKEDITOR.instances.editor1.insertHtml( '<p>This is a new paragraph.</p>' );
该示例来自 http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertHtml
的官方文档