搜尋

首頁  >  問答  >  主體

主題更改時如何製作活動

當主題改變時,我想舉辦一個活動。不使用setTheme()

var editor = ace.edit("editor");
ace.require("ace/ext/settings_menu").init(editor);
editor.session.setMode("ace/mode/java");
editor.setOptions({
    theme: "ace/theme/tomorrow_night_bright"
});

editor.on('changeTheme', function() {    -> This is not working
    console.log(editor.mode)
})

我嘗試更改主題事件,並且使用 $("#-theme").change() 事件但不起作用

P粉245276769P粉245276769439 天前797

全部回覆(1)我來回復

  • P粉103739566
  • 取消回覆