페이지 에 에이스 편집기 코드 편집기 삽입

1146 단어
다운로드 주소:https://codeload.github.com/ajaxorg/ace-builds/zip/master 압축 을 풀 면 프로젝트 에서 src - noconflict 폴 더 를 가 져 오 면 됩 니 다.div 의 높이 는 반드시 설정 해 야 합 니 다. 그렇지 않 으 면 나 올 수 없습니다.



    var editor = ace.edit("editorDiv");
    //       ,  theme-*.js  
    editor.setTheme("ace/theme/twilight");
    //      ,  mode-*.js  
    editor.session.setMode("ace/mode/javascript");
    //         
    editor.setShowPrintMargin(false);
    //      
    editor.setReadOnly(true);
   
    //              ,           ext-language_tools.js
    ace.require("ace/ext/language_tools");
    editor.setOptions({
        enableBasicAutocompletion: true,
        enableSnippets: true,
        enableLiveAutocompletion: true
    });

editor.getValue();//    
editor.setValue(value);//    

참고 자료
ACE Editor 온라인 코드 편집기 안내 및 사용 안내

좋은 웹페이지 즐겨찾기