2
我有幾個ace.js編輯器在一個頁面上。它們存儲在一個數組中。Ace.js .on事件
如何確定我輸入文本的編輯器?
var editor = {first: ace.edit("editor"), second: ace.edit("editor1"), third: ace.edit("editor2")};
for(var i in editor) {
editor[i].getSession().setMode("ace/mode/javascript");
editor[i].on('input', function() {
console.log(this); // How to get current editor? this returns [function()]
});
}
的jsfiddle:http://jsfiddle.net/3nHas/25/
在此先感謝。
非常感謝! – owl