3

是否可以在 CodeMirror 2 实例中包含两种或多种模式?

例如

var editor = CodeMirror.fromTextArea(document.getElementById("editor"), {
    value: "Hello World",
    mode: "css", "html", "javascript"
  });
4

1 回答 1

1

只需使用htmlmixed模式。这取决于xmljavascript模式css

于 2012-08-24T21:54:10.333 回答