如何使tinymce编辑器的高度随内容自变化
最简单的方法就是在配置时添加Autoresize插件:
tinymce.init({ selector: "textarea", // change this value according to your HTML plugins: "autoresize"});
该插件有5个选项,可以设置最大高度、最小高度、距离底部的距离等:
tinymce.init({ ... plugins: "autoresize", autoresize_bottom_margin: 50, autoresize_max_height: 500, autoresize_min_height: 350, autoresize_on_init: true, autoresize_overflow_padding: 50});
这些选项不是必须设置,默认情况只需要设置plugins: "autoresize"即可。
来源:http://www.talkwithtrend.com/Article/218661
原文地址:https://www.cnblogs.com/hao-1234-1234/p/9002285.html
时间: 2024-10-30 01:40:50