// 修改百度编辑器内容高度固定(滚动条问题)config.js文件中,修改autoHeightEnabled: false以下设置才生效
$(function(){
var ue = UE.getEditor(‘container‘);
ue.ready(function() {
ue.setHeight($("#content").height()-$("#edui1_toolbarbox").height());
});
})
container为编辑器盒子
UE.getEditor(‘container‘).setHeight(500)
原文:https://www.cnblogs.com/onceblog/p/11362982.html