如何使用jquery刷新tinymce内容或刷新tinramece iframe?
答案 0 :(得分:8)
此代码用于刷新tinymce:
tinyMCE.execCommand("mceRepaint");
答案 1 :(得分:5)
您可以使用此语句刷新(替换)内容:
editor.execCommand('mceSetContent', false, html);
或者如果你想确保清除脏标志:
editor.execCommand('mceSetContent', false, html);
editor.startContent = tinymce.trim(editor.getContent({ format: 'raw' }));
editor.isNotDirty = true;
editor.nodeChanged();