1. 程式人生 > >自定義ueditor元件

自定義ueditor元件

先羅列一些常用的功能:

'redo', //重做 'snapscreen', //截圖 'bold', //加粗'horizontal', //分隔線
 'cleardoc', //清空文件'fontfamily', //字型  'forecolor', //字型顏色
        'fontsize', //字號   'simpleupload', //單圖上傳
        'insertimage', //多圖上傳 'emotion', //表情  'map', //Baidu地圖
  'insertvideo', //視訊 'attachment', //附件

使用的時候,可以修改配置檔案,也可以在例項化時傳入,這裡推薦使用例項化時傳入。

看例子:

var ue = UE.getEditor('editor', {
    toolbars: [
        ['fullscreen', 'source', 'undo', 'redo', 'bold']
    ],
    autoHeightEnabled: true,//設定是否可以根據文字框的內容來調整編輯器的高度
    autoFloatEnabled: true//設定可以自動浮動
});

另外,還有兩個引數可以調節編輯器的大小:

initialFrameWidth {Number} [預設值:1000] //初始化編輯器寬度,預設1000

initialFrameHeight {Number} [預設值:320] //初始化編輯器高度,預設320

其他請移步官方文件:http://fex.baidu.com/ueditor/#start-config