Ace Web编辑器不可见

use*_*945 7 javascript jquery editor ace-editor

当我尝试使用非“ editor” ID加载ace编辑器时,该编辑器将不会显示

<div style="position:relative;min-height:400px;">
        <div id="editor-fr">
        </div>
</div>

{{ HTML::script('js/ace-builds/src-noconflict/ace.js') }}

<script>
    var editor = ace.edit("editor-fr");
    editor.setTheme("ace/theme/monokai");
    editor.getSession().setMode("ace/mode/html");
</script>
Run Code Online (Sandbox Code Playgroud)

在下面的代码中,如果我将id更改为editor,一切都会正常进行。为什么不使用id编辑器是因为我的页面需要2个编辑器

工作中

不工作

Hen*_*331 8

设置编辑器的宽度和高度,如下所示:

<div id="editor-fr" style="height: 500px; width: 500px"></div>
Run Code Online (Sandbox Code Playgroud)