我们已经为我正在开发的系统集成了Tinymce。我的老板要我使用加载图像,直到Tinymce textarea内的全部内容加载。我只需要在预加载器下隐藏HTML直到内容加载。你们其中任何人都知道我该怎么做吗?
非常感谢。
答案 0 :(得分:1)
在init的编辑器上执行此操作(将此代码放在您的tinymce init函数中)
...
theme: "advanced", // example param
plugins = 'code', // example param
setup: function (ed) {
// gets executed when the editor is fully loaded
ed.onInit.add(function(ed) {
// hide the loading image here
// give css display: none to the preloader image
});
},
cleanup: true, // example param
...
答案 1 :(得分:0)
在内容未格式化之前隐藏编辑器:
setup: function (ed) {
ed.onGetContent.add(function(ed, o) {
jQuery('.mceEditor').hide();
});
ed.onInit.add(function(ed) {
jQuery('.mceEditor').show('slow');
});
}