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