1

私は現在tinyMCEを使用しており、oninit関数を使用してカスタムフッターをメッセージボディに追加しています。エディター内でフッターを取得するのに問題はありませんが、ユーザーがページを更新する原因となる添付ファイルを追加すると問題が発生します。フッターを除くすべてのコンテンツがエディターから削除されます。(コードは想定どおりに動作しています!) ページが更新されたときに tinyMCE を再起動しないようにする方法はありますか、それとも別の方法がありますか? 以下のコード:

    <script type="text/javascript">
    <!-- Intiate tinyMCE -->
    tinyMCE.init({

    // General options
    mode : "textareas",
    theme : "advanced",
    plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount",
    "apply_source_formatting" : true,
    "paste_auto_cleanup_on_paste" : false,
    "paste_retain_style_properties" : "all",
    //The below two lines to fix enter problem after a pastes is done by the user
    "force_br_newlines" : true,
    "force_p_newlines" : false,

    // Theme options
    theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,cut,copy,paste,pastetext,|,search,replace,|,bullist,numlist,|,outdent,indent,|,formatselect,fontselect,fontsizeselect",
    theme_advanced_buttons2 : "undo,redo,|,link,unlink,|,insertdate,inserttime,preview,|,forecolor,backcolor,|,tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,advhr,|,ltr,rtl,|,fullscreen,|,wordcount",

    //Calling a new CSS file to set Default Font and Text size
    content_css : "/js/tiny_mce/themes/advanced/skins/default/custom.css" + new Date().getTime(),
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    theme_advanced_resizing : true,

    oninit: function(){
        tinyMCE.get('messageBody').setContent('<br><br><p>This message was generated by the Tool <br> If you are experiencing any issues with the Tool, please contact us <a href="mailto:someone@something.com">here</a> <br><a href="https://www.google.com">The Tool</a></p>');
    }



    });
    </script>
4

1 に答える 1

1

tinyMCE を含むメイン ページが更新されないため、非表示の iframe を使用してユーザーに添付ファイルをアップロードしてもらいます。現在、一般的なファイルのアップロードを使用していますか? パッケージ化されたものを使用するように変更したい場合は、plupload をしばらく使用しましたが、これは非常に便利なファイル アップロード ユーティリティです。

于 2013-07-02T20:15:51.650 に答える