修改百度编辑器内容高度固定(滚动条问题)

// 修改百度编辑器内容高度固定(滚动条问题)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)

猜你喜欢

转载自www.cnblogs.com/onceblog/p/11362982.html
今日推荐