ueditor设置默认字体、⼤⼩和颜⾊;回车事件捕获
他们的API不好看,好⾟苦,百度搜了好久也没什么太多资料,最后还是去看源码,到了⽐较好的修改⽅法:ueditor⽤iframe实现编辑框,设置body的样式即可,
//default font and color
UE.dom.domUtils.setStyles(self.ue.body, {
'color': '#868686','font-family' : "'Microsoft Yahei','Helvetica Neue', Helvetica, STHeiTi, Arial, sans-serif", 'font-size' : '14px'
});
ueditorapi文档
顺便说⼀句:修改配置⽂件fig.js只是修改可选项,不能修改默认值,所以实例的时候给options,或者editor.setOpt(Object)这些都没⽤。
>>># 下⾯是我的代码⽚段,我还实现了回车即发送的功能,希望对其他朋友有所帮助
         #### code begin >>##
/
/实例化编辑器
var self = this;
self.ue = UE.getEditor('editor',{toolbars: []});
ady(function(){
self.isloadedUE = true;
//set Global.ueditor
Global.ueditor = self.ue;
self.ue.setDisabled();
//default font and color
UE.dom.domUtils.setStyles(self.ue.body, {
'color': '#868686','font-family' : "'Microsoft Yahei','Helvetica Neue', Helvetica, STHeiTi, Arial, sans-serif", 'font-size' : '14px'
});
//回车发送
UE.(self.ue.body, 'keyup', function(event){
if(event.keyCode == 13){
console.log('enter ok');
event.preventDefault();
event.stopPropagation();
self.sendMsg();
}
});
});
>>># code end >>##

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。

发表评论