如何从CKEditor获取值并将其显示在HTML表中?

时间:2017-03-30 05:18:04

标签: jquery html html5 ckeditor

enter image description here

我必须从编辑器到下表显示等式,因为它是

1 个答案:

答案 0 :(得分:0)

您可以通过以下代码从ckeditor获取内容。您需要在提供的代码中将与您的html元素关联的ID替换为<id-for-the-textarea>CKEDITOR.replace()将使用CKEDITOR功能文本框替换先前传递给它的id的textarea。之后,您可以通过在CKEDITOR覆盖的html元素的id上调用CKEDITOR.instances来获取文本。

var msgEditor = CKEDITOR.replace('<id-for-the-textarea>', {
        height: "150",
        // placeholder:'Type text...',
        //extraPlugins: 'placeholder',
    });
var msg = CKEDITOR.instances.<id-for-the-textarea>.document.getBody().getHtml();

为了从收到的文本中仅获得等式,您可以使用

msg.replace("solve this mathematical equation", "");