私はエースエディタを使用しています。ときどき、正確にいつとは言えませんが (テキスト エディターを 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));