How to set focus on the ace editor?

后端 未结 5 526
轻奢々
轻奢々 2021-02-03 18:54

I am using the ace editor component from ajax.org inside a jquery tab interface. Each tab will contain a separate ace editor. Whenever I switch to a new tab, the editor in it wo

5条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-03 19:52

    editor.focus(); //To focus the ace editor
    var n = editor.getSession().getValue().split("\n").length; // To count total no. of lines
    editor.gotoLine(n); //Go to end of document
    

提交回复
热议问题