CKEditor以html格式获取数据

时间:2019-05-16 15:33:00

标签: angular typescript ckeditor

我正在尝试获取用户在文本区域中输入的数据。 我尝试了CKEDITOR.instances.editor1.getData(),  CKEDITOR.instances.ckeditor.document.getBody.getHtml() 它们都以字符串格式返回html。 我想以html格式显示数据。

有没有可以向我提供html数据的API?

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以通过CKEditor.instances.<instance-name>.document.$.body获得iFrame编辑器的body元素。

这将为您提供实际的HTML元素,您可以根据需要使用它。