我正在尝试获取用户在文本区域中输入的数据。 我尝试了CKEDITOR.instances.editor1.getData(), CKEDITOR.instances.ckeditor.document.getBody.getHtml() 它们都以字符串格式返回html。 我想以html格式显示数据。
有没有可以向我提供html数据的API?
谢谢!
答案 0 :(得分:0)
您可以通过CKEditor.instances.<instance-name>.document.$.body
获得iFrame编辑器的body元素。
这将为您提供实际的HTML元素,您可以根据需要使用它。