在自动增长时使两个编辑器的大小相同

时间:2015-04-02 13:07:37

标签: javascript jquery ckeditor autogrow

我在一个页面中使用了两个CKEDITOR的编辑器,而且我一直都在使用相同的大小。我正在使用auto grow插件,所以我试了一下:

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/

1 个答案:

答案 0 :(得分:2)

忘掉我之前说过的一切(我删除了它,但你仍然可以在revision history中看到它。)

使用我在Web site上找到的一些代码,您可以计算出框的高度。现在,您只需要应用它来更新调整大小时的框高度:

function getBoxHeight(boxId) {

    // using a function to get the height of the box from ==> 
    var ckeditorFrame = $('#' + boxId + ' iframe');
    var innerDoc = (ckeditorFrame.get(0).contentDocument) ? ckeditorFrame.get(0).contentDocument : ckeditorFrame.get(0).contentWindow.document;
    var messageHeight = $(innerDoc.body).height();

    return messageHeight ? messageHeight : 0;
}

function r() {

    if (getBoxHeight("cke_1_contents") > getBoxHeight("cke_2_contents")) {
        $("#cke_2_contents").height($("#cke_1_contents").height());
    } else {
        $("#cke_1_contents").height($("#cke_2_contents").height());
    }

}

正如你在JSFiddle上看到的那样:http://jsfiddle.net/povw33x7/3/。这个解决方案比另一个更干净,虽然它仍然有一个小故障,因为它可能会在其中一个方框中留下一个额外的空白空间(一条线的高度)。