How can I append text to html source in CKEditor?

后端 未结 2 1656
野的像风
野的像风 2021-02-15 20:44


I use CKEditor in my web-application. By click on one link i appends some text to CKEditor. It works fine. But when I open source tab, i can not append this te

相关标签:
2条回答
  • 2021-02-15 21:13

    According to this post http://www.techsirius.com/2013/09/dynamically-insert-string-into-ckeditor.html

    You can insert text into ckeditor(textarea). You just need to give an unique ID to ckeditor(textarea) after that follow below code.

    <script type=”text/javascript”>
      function insertIntoCkeditor(str){
        CKEDITOR.instances[ckeditor_id].insertText(str);
      }
    </script>
    

    This is working demo link. http://demo.techsirius.com/demo/dynamically-insert-string-into-ckeditor

    0 讨论(0)
  • 2021-02-15 21:21

    If you are trying to append HTML text, you could use the createFromHtml method like this for example:

    var imgHtml = CKEDITOR.dom.element.createFromHtml("<img src=" + imageSrcUrl + " alt='' align='right'/>");
    

    where imageSrcUrl is the image location and then you can insert it into the ckeditor source like this:

    CKEDITOR.instances.body.insertElement(imgHtml);
    

    There are other methods like insertHtml or insertText, you can check the CKEditor APIs for more details on these.

    0 讨论(0)
提交回复
热议问题