Ueditor 自定义按钮 http://www.cnblogs.com/cjgu/p/5515124.html
UEditor工具栏上自定义按钮、图标、事件、窗口页面 http://www.voidcn.com/blog/yiyihuazi/article/p-6132748.html
如果我没有设置autoHeightEnabled:false这个参数,编辑框总是会随着图片的拉伸变得很高。
1 2 3 4 5 |
var content = UE.getEditor('content', {initialFrameHeight:500, autoHeightEnabled:false}); content.ready(function() { content.setHeight(500); //UE.getEditor('content').setHeight(300); }); |