0

我正在使用 TinyMCE 更新我的 Front UI。在 textareas 中显示字段名不能超过 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 对输入数据时 textarea 可以接受的字符数没有任何限制。

您能否也显示您的 html 代码,以便我们更好地了解问题所在?

于 2012-07-02T20:12:02.417 回答
0

为此,您将自己编写一些代码,但可以完成。我已经实现了类似的东西。如果这对你有用,请告诉我。

于 2012-07-03T09:49:08.213 回答