我想知道在使用预览插件打开Tinymce预览时是否有人知道任何添加额外格式的方法?
Thnaks
答案 0 :(得分:0)
我试图找到相同的解决方案并找到了你的问题。
我查看了插件代码并且无法找到任何挂钩,以解决我用以下代码覆盖预览插件命令的问题
// needed only if editor is not in the scope
var editor = tinymce.activeEditor;
// check if plugin is active for this instance
if (editor.getParam('plugins').match(/\bpreview\b/)) {
editor.addCommand('mcePreview', function() {
editor.windowManager.open({
// paste code from original "preview" plugin
// do your stuff here
// there's a "doc" variable avaliable
// which points to the iframe document in preview window
});
});
}
注意:我正在运行TinyMCE 4