更改不同实例(不是所有实例)的ckeditor维度

时间:2012-02-23 07:19:15

标签: javascript ckeditor dimensions

我正在尝试在textarea之后使用此代码在同一页面中更改多个ckeditor的维度

<script type="text/javascript">
CKEDITOR.config.width ='250px';
CKEDITOR.config.height='600px';
</script>

它会更改页面中的所有实例,我知道如何调整config.js中的默认值,但我正在尝试更改某些实例的维度而不是所有实例

1 个答案:

答案 0 :(得分:2)

如果您需要更改CKEditor的特定实例的高度,并且您可以更改的全部是config.js,那么您可以在配置文件中使用this.name来检测编辑器的正确实例:< / p>

CKEDITOR.editorConfig = function( config ) {
    // Default height for all instances
    config.height = '400';

    // Height for specific instance, the ID of textarea is "editor1"
    if (this.name == 'editor1') {
        config.height = '200';
    }
};