我在Web应用程序中使用codemirror,当我在编辑器中加载代码时,我注意到有些行不可编辑(只读)。
如何使编辑器中的所有代码都可编辑?
这是我使用JS声明编辑器的方式:
var editor = CodeMirror.fromTextArea(document.getElementById("txtVersionCode"), {
lineNumbers: true,
mode: "vb",
styleActiveLine: true,
theme: "eclipse"
});
editor.refresh();
下面是屏幕截图: