解决方法
你应该看看
<div class="CodeMirror-gutters" style=" /*height: some_pixel*/; "><div class="CodeMirror-gutter CodeMirror-linenumbers" style="width: 28px;"></div></div>
按Enter或任意关键字后,它将自动设置行号的高度,而不是some_pixel,
如果你在开始时遇到这个问题,你可能想看看如何创建,
有三种常用方法,
最简单的方法是定义文本区域并使用以下代码:
var YourCodeMirror = CodeMirror.fromTextArea(YourDefinedTextArea);
最好的是使用代码放置值:
var yourCodeMirror = CodeMirror(PlaceYouWant,{ value: /*any code here :*/"function(){return 'anything'}",mode: /*your mode ie.*/"javascript" });
希望能帮助到你
更新:这里有一个手册网站:http://codemirror.net/doc/manual.html