2
코드 미러를 사용하면 코드를 접을 수 있습니다. 모든 코드를 중괄호로 묶어주세요. 당신의 도움에 대한CodeMirror, 모든 코드 접기 방법
window.onload = function() {
var te = document.getElementById("code");
var sc = document.getElementById("script");
var te_clike = document.getElementById("code-clike");
window.editor_clike = CodeMirror.fromTextArea(te_clike, {
mode: "text/x-csharp",
lineNumbers: true,
extraKeys: {"Ctrl-Q": function(cm){ cm.foldCode(cm.getCursor()); }},
foldGutter: true,
readOnly: true,
gutters: ["CodeMirror-linenumbers", "CodeMirror-foldgutter"]
});
};
감사합니다 당신에게 ...