0

私が開発しているシステムにTinymceを統合しました。上司は、Tinymce textarea内にコンテンツ全体が読み込まれるまで、読み込み中の画像を使用することを望んでいます。コンテンツが読み込まれるまで、プリローダーの下でHTMLを非表示にする必要があります。あなたの誰かが私がこれをどのように行うことができるか考えていますか?

感謝します。

4

2 に答える 2

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
...
于 2012-07-18T09:51:09.833 に答える
0

フォーマットされていないコンテンツの前にエディターを非表示にします。

setup: function (ed) {
    ed.onGetContent.add(function(ed, o) {
        jQuery('.mceEditor').hide();
    });
    ed.onInit.add(function(ed) {
        jQuery('.mceEditor').show('slow');
    });
}
于 2013-04-18T09:27:39.980 に答える