我正在使用带有div编辑区域插件的CKEditor 4。默认情况下,使用 iframe模式时,将高度设置为设置的行数,并随着文本的增长重新调整大小。现在因为我正在使用div区域插件,默认高度不受设置值的影响,但取决于内部的文本。如何解决这个问题??
如果我在这里手动更改高度,那么textarea将不会扩展。
<div id="cke_1_contents" class="cke_contents cke_reset" role="presentation" style="height: auto;">
<div class="cke_wysiwyg_div cke_reset cke_editable cke_editable_themed cke_contents_ltr cke_show_borders" hidefocus="true" contenteditable="true" tabindex="0" spellcheck="false" style="position: relative;" role="textbox" aria-label="Rich Text Editor, editor1" title="Rich Text Editor, editor1" aria-describedby="cke_128">
<p>This is my textarea to be replaced with CKEditor.</p>
</div>
<span id="cke_128" class="cke_voice_label">Press ALT 0 for help</span>
</div>
答案 0 :(得分:0)
在ckeditor / config.js中更改此内容
CKEDITOR.editorConfig = function( config )
{
config.height = '800px';
};
如果这不起作用,你可以试试这个: http://www.stepcoder.com/Articles/10003/how-to-set-or-change-height-of-ckediotr-textbox-area-using-asp-net