我正在使用TinyMCE来更新我的Front UI。 在textareas中,它显示 fieldname 不能超过210个字符。如何扩大此范围或使其无范围。在数据库表中,此字段为文本类型。
在我的标题中,我已经配置了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>
答案 0 :(得分:1)
tinyMCE对输入数据时textarea可以接受的字符数没有任何限制。
你能否展示你的HTML代码,以便我们更好地了解问题所在?
答案 1 :(得分:0)
为此,您可以自己编写一些代码,但可以完成。 我已经实现了类似的东西。如果这对您有用,请告诉我。