0

フロント UI の更新に TinyMCE を使用しています。テキストエリアでは、フィールド名が 210 文字を超えることはできません。この範囲を拡張する方法、または範囲をなくす方法。DB テーブルでは、このフィールドはテキストタイプです。

私のヘッダーでは、次のように tinyMCE を構成しました。

<script type="text/javascript">
            tinyMCE.init({
                    mode : "textareas",
                    theme : "advanced",
                    plugins : "emotions,spellchecker,advhr,insertdatetime,preview", 

                    // Theme options - button# indicated the row# only
                    theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,formatselect",
                    theme_advanced_buttons2 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,|,code,preview,|,forecolor,backcolor",
                    theme_advanced_buttons3 : "insertdate,inserttime,|,spellchecker,advhr,,removeformat,|,sub,sup,|,charmap,emotions",      
                    theme_advanced_toolbar_location : "top",
                    theme_advanced_toolbar_align : "left",
                    theme_advanced_statusbar_location : "bottom",
                    theme_advanced_resizing : true
            });
        </script>
4

2 に答える 2

1

tinyMCE は、データ入力時にテキストエリアが受け入れることができる文字数に制限を課しません。

問題が何であるかをよりよく理解できるように、HTML コードも表示できますか?

于 2012-07-02T20:12:02.417 に答える
0

このためには、自分でコードを記述しますが、実行できます。私は似たようなものを実装しました。これがうまくいく場合は、私に知らせてください。

于 2012-07-03T09:49:08.213 に答える