TinyMCE- Get plain text

前端 未结 3 873
北荒
北荒 2021-01-02 03:10

In tinyMCE, Is there any way to get the plain text instead of HTML text?

3条回答
  •  天涯浪人
    2021-01-02 04:16

    Try this:

    var myText = tinyMCE.activeEditor.selection.getContent({ format: 'text' });
    

提交回复
热议问题