在CodeMirror TextArea上设置默认语言

时间:2013-08-13 19:03:45

标签: php javascript html textarea codemirror

如何设置CodeMirror TextArea将理解PHP而不回显标签?

The Textarea

<textarea id="code" name="code">
  <?php
    echo '<?php';
  ?>
</textarea>

JS脚本

var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
        lineNumbers: false,
        matchBrackets: true,
        mode: "application/x-httpd-php",
        indentUnit: 4,
        indentWithTabs: true,
        enterMode: "keep",
        tabMode: "shift"
    });

1 个答案:

答案 0 :(得分:1)

我已经解决了,你必须将模式更改为模式:“text / x-php”,