我在 jQuery 对话框中使用 TinyMCE。为了让编辑器工作,我必须将模式从“textareas”设置为“none”。但是,这样做会使工具栏消失。
这显示了工具栏,但实际的编辑窗口不起作用:
tinyMCE.init({
theme: "advanced",
mode: "textareas",
theme_advanced_toolbar_location: "top"
});
这会导致编辑窗口工作,但缺少工具栏:
tinyMCE.init({
theme: "advanced",
mode: "none",
theme_advanced_toolbar_location: "top"
});
有没有办法在模式:“无”时恢复工具栏?
谢谢