📜  tinymce 提取值 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:18.284000             🧑  作者: Mango

代码示例1
// Get the HTML contents of the currently active editor
tinyMCE.activeEditor.getContent();

// Get the raw contents of the currently active editor
tinyMCE.activeEditor.getContent({format : 'raw'});

// Get content of a specific editor:
tinyMCE.get('content id').getContent()