0

我如何设置 CodeMirror TextArea 将在不回显标签的情况下理解 PHP?

文本区

<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"
    });
4

1 回答 1

1

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

于 2013-08-22T18:44:46.013 回答