请帮忙,因为我被困了几个小时。我在一页中有多个文本区域。每个文本区域内部都有不同的内容,这使得它具有不同的高度。当我像这样初始化 TinyMCE 时:
tinyMCE.init({
mode: "textareas",
theme: "advanced",
width: "870",
readonly: true,
theme_advanced_path: false,
theme_advanced_resizing: true,
theme_advanced_resize_horizontal: false,
auto_resize: true
});
所有文本区域都具有相同的高度,其中内容较多的文本区域内部有滚动。任何想法如何摆脱卷轴并使文本区域的高度与里面的内容一样高?