如何刷新tinymce iframe?

时间:2010-12-01 13:08:08

标签: tinymce

如何使用jquery刷新tinymce内容或刷新tinramece iframe?

2 个答案:

答案 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();