UEditor 도구 모음 구성

3352 단어
UEditor 도구 모음에는 다음과 같은 두 가지 구성 방법이 있습니다.
첫 번째: ueditor를 직접 수정합니다.config.js 파일
파일 ueditor에 있습니다.config.js에는 toolbars가 있습니다. 이곳의 모든 문자열은 단추 기능입니다. 아래와 같은 빨간색 부분입니다.
    window.UEDITOR_CONFIG = {

        // , 
        UEDITOR_HOME_URL: URL

        //  
        , serverUrl: URL + "net/controller.ashx"

        // , new 
        , toolbars: [[
            'fullscreen', 'source', '|', 'undo', 'redo', '|',
            'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|',
            'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',
            'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',
            'directionalityltr', 'directionalityrtl', 'indent', '|',
            'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',
            'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
            'simpleupload', 'insertimage', 'emotion', 'scrawl', 'insertvideo', 'music', 'attachment', 'map', 'gmap', 'insertframe', 'insertcode', 'webapp', 'pagebreak', 'template', 'background', '|',
            'horizontal', 'date', 'time', 'spechars', 'snapscreen', 'wordimage', '|',
            'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', 'charts', '|',
            'print', 'preview', 'searchreplace', 'drafts', 'help'
        ]]

2층 "[]"내의 모든 단추는 같은 줄에 있습니다. 만약에 주동적으로 줄을 바꾸려면 ['bt1', bt2], [bt3, bt4]] 형식으로 bt1과 bt2가 첫 줄에 있고 bt3과 bt4가 두 번째 줄에 있습니다.'|'는 도구 모음에 세로줄을 추가하여 양쪽 단추를 분리하는 구분자를 나타냅니다.
두 번째: 실례화 시 도구 모음 구성
편집기가 실례화될 때, 도구막대를 다시 설정할 수 있습니다. 아래의 빨간색 부분, 형식과 ueditor를 보십시오.config.js 파일 동일
    var ue = UE.getEditor("editor-1", {
        toolbars: [['undo','redo','|','bold','italic']],
        enableAutoSave: false,
        autoHeightEnabled: false,
        autoClearinitialContent: true,
        initialFrameHeight: 930,
        wordCount: false,
        elementPathEnabled: false,
        initialFrameWidth: 680,
        //autoFloatEnabled:false
    });

좋은 웹페이지 즐겨찾기