Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我安装了 TinMCE,现在我想从编辑器外部调用预览功能。我的意思是当单击另一个预览按钮时,它需要调用 tinymce 预览,以便我可以看到预览弹出窗口。这个有可能 ?
尝试跟随这个小提琴
在编辑器外创建一个按钮。在单击此按钮时调用此命令。
tinyMCE.activeEditor.execCommand('mcePreview');
希望这可以帮助。
尝试使用类似的语法来获取内容:
var content = tinyMCE.activeEditor.getContent();
或预览:
$('textarea.tinymce').tinymce().execCommand('mcePreview');