TinyMCE 自动调整大小插件不起作用

TinyMCE autoresize plugin not works

本文关键字:插件 不起作用 调整 TinyMCE      更新时间:2023-09-26

我想重现这种简单的行为:

http://tinymcesupport.com/tutorials/autoresize-automatic-resize-plugin

这是我的初始化:

 <!-- TinyMCE -->
        <script type="text/javascript" src="js/jscripts/tiny_mce/tiny_mce.js"></script>
        <script type="text/javascript">
            tinyMCE.init({
                mode : "exact",
                elements : "pagina_testo_colonna1,pagina_testo_colonna2,pagina_testo_colonna3",
                theme : "advanced",
                plugins:"paste,autoresize",
                plugin_preview_width : "100%",
                width : "100%",
                theme_advanced_buttons1 : "pastetext,|,bold,italic,underline,strikethrough,|,bullist,numlist,|,indent,outdent,|,undo,redo,|,justifyleft,justifycenter,justifyright,justifyfull,|,link,unlink,|,charmap",
                theme_advanced_buttons2 : "",
                theme_advanced_buttons3 :"",
                theme_advanced_disable : "image,anchor,cleanup,help,code,hr,removeformat,sub,sup",
                theme_advanced_resizing : true,
                paste_text_use_dialog : true,
                relative_urls : false,
                remove_script_host : false
            });
        </script>
        <!-- /TinyMCE -->

我已经在插件列表中添加了"自动调整大小",但我的编辑器在我写作时不会调整大小,他们只是滚动。我在同一页面中有多个编辑器。我的代码有什么问题?

 <script type="text/javascript">
            tinyMCE.init({
                mode : "exact",
                elements : "pagina_testo_colonna1,pagina_testo_colonna2,pagina_testo_colonna3",
                theme : "advanced",
                plugins:"paste,autoresize",
                plugin_preview_width : "100%",
                width : "100%",
                theme_advanced_buttons1 : "pastetext,|,bold,italic,underline,strikethrough,|,bullist,numlist,|,indent,outdent,|,undo,redo,|,justifyleft,justifycenter,justifyright,justifyfull,|,link,unlink,|,charmap",
                autoresize_min_height : "100px",
                autoresize_max_height : "500px",
                theme_advanced_buttons2 : "",
                theme_advanced_buttons3 :"",
                theme_advanced_disable : "image,anchor,cleanup,help,code,hr,removeformat,sub,sup",
                theme_advanced_resizing : true,
                paste_text_use_dialog : true,
                relative_urls : false,
                remove_script_host : false
            });
        </script>

要工作,我必须设置参数autoresize_min_height:"100px",autoresize_max_height : "500px",