用codemirro在线编辑高亮显示,获取不到textarea里面的内容
发布网友
发布时间:2022-04-27 10:23
我来回答
共1个回答
热心网友
时间:2023-09-12 14:01
根据创建的editor对象,来获取
editor.getValue();只有简单这个方法就可以轻松获取。
列如:
window.editor = CodeMirror.fromTextArea(document.getElementById('code'), {
mode: mime,
indentWithTabs: true,
smartIndent: true,
lineNumbers: true,
matchBrackets : true,
autofocus: true
});
editor.getValue();
验证通过,楼主给分把.