我正在使用ace 编辑器。有时,我不能准确地说出什么时候(我把文本编辑器放在 ajax 中),文本光标移动到行尾才在那里写。只有当我再次刷新页面时,它才会起作用。
这是代码:
var ace_editor = null;
// Than I call to ajax to get the content of the ace editor
ace_editor = ace.edit("editbox");
ace_editor.setTheme("ace/theme/eclipse");
ace_editor.getSession().setMode("ace/mode/html");
ace_editor.getSession().setValue(ParseResponseRules(xmlhttp.responseText));