当前位置: 代码迷 >> Web前端 >> 动态设立Ckeditor的尺寸
  详细解决方案

动态设立Ckeditor的尺寸

热度:136   发布时间:2012-10-25 10:58:57.0
动态设置Ckeditor的尺寸

<input type='textarea' id='myText'>

<script>
if(isNaN(w) || isNaN(h)){
	w = 500;
	h = 400;
}
editor = CKEDITOR.replace("myText",{width:w,height:h});
</script>



replace后面可以跟配置,传递宽和高进来就可以设置了,不过这里的宽是编辑器的宽,高是指编辑区域和高,不包括上面的工具按钮。
  相关解决方案