gpt4 book ai didi

javascript - 改变不同实例(不是所有实例)的 ckeditor 维度

转载 作者:行者123 更新时间:2023-11-30 18:31:59 24 4
gpt4 key购买 nike

我正在尝试使用文本区域之后的代码更改同一页面中多个 ckeditor 的尺寸

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

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

最佳答案

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

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';
}
};

关于javascript - 改变不同实例(不是所有实例)的 ckeditor 维度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9408707/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com