我使用CodeMirror创建了一个在线编辑器。我的问题是,当我试图获得textarea的值时,我失败了。
这是我到目前为止所写的内容:
var code = $("#editor")[0];
var editor = CodeMirror.fromTextArea(code, {
mode: {name: "pyhton",version: 2,
singleLineStringErrors: false
},
lineNumbers :true,
indentUnit: 4,
matchBrackets: true
});
我想用
来获取价值 var value = editor.getValue();
我收到错误说
TypeError:editor.getValue不是函数