0
idによるエースエディタへの参照を取得する方法はありますか?エースエディタをidで取得する方法はありますか?
エースはエディタへの参照を保持しないので、エディタへの参照を取得する必要がありますが、どのようにすればいいですか?私はコアにこれを追加することをお勧めしたいと思い
ace.getEditorById = function(el) {
if (typeof el == "string") {
var _id = el;
el = document.getElementById(_id);
if (!el) {
return null;
}
if (el && el.env && el.env.editor instanceof Editor) {
return el.env.editor;
}
}
return null;
}
:
ace.edit( "id")は既にこれを行います。https://github.com/ajaxorg/ace/blob/v1.2.6/lib/ace/ace.js#L84-L85 –