How to set focus on the ace editor?

后端 未结 5 596
轻奢々
轻奢々 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:35

    I use JQuery with the Ace Editor, and I found the following code worked really nicely for me. PS: My Code Editor Window is in an Iframe:

    $('#modelFrame').mouseover(function() {
        try {
            $(this).get(0).contentWindow.editor.focus();
        } catch (doNothing) {
            ;;
        }
    });
    

提交回复
热议问题