我在一页中使用了两个 CKEDITOR 的编辑器,而且我一直使用相同的大小。我正在使用自动增长插件,所以我尝试了它:
CKEDITOR.plugins.addExternal( 'autogrow', location.href + 'ckeditor/autogrow/', 'plugin.js' );
var e1 = CKEDITOR.replace("heb_editor", {extraPlugins: 'autogrow'});
var e2 = CKEDITOR.replace("eng_editor", {extraPlugins: 'autogrow'});
e1.on("resize", r);
e2.on("resize", r);
function r(){
if($("#cke_1_contents").height() > e2.config.height)
$("#cke_2_contents").height($("#cke_1_contents").height());
else
$("#cke_1_contents").height($("#cke_2_contents").height());
}
它没有用。它确实将第二个编辑器的大小调整为第一个的大小,但它没有在需要时将第一个编辑器的大小调整为第二个的大小。该怎么办?
这是一个 JSfiddle:http: //jsfiddle.net/povw33x7/