Questions tagged «codemirror»

13
Codemirror编辑器在单击之前不会加载内容
我正在使用codemirror 2,它的工作正常,除了在单击编辑器并使其成为焦点之前,不会将编辑器的设置值加载到编辑器中。 我希望编辑器无需单击即可显示其本身的内容。有任何想法吗? 所有的codemirror演示都按预期工作,因此我认为也许textarea没有集中精力,所以我也尝试过。 $("#editor").focus(); var editor = CodeMirror.fromTextArea(document.getElementById("editor"), { mode: "text/html", height: "197px", lineNumbers: true });

5
如何获得Codemirror textarea的值
我正在使用Codemirror的textarea插件,但无法检索textarea的值。 码: var editor = CodeMirror.fromTextArea(document.getElementById("code"), { lineNumbers: true, matchBrackets: true, mode: "text/x-csrc" }); function showCode() { var text = editor.mirror.getCode(); alert(text); } 它显示错误: editor.getCode() is not a function.
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.