在关卡选择事件上调用函数的 HTML 代码。这段代码是用 Ember 框架编写的。
{{ action "onLevelSelect" this on="change" target= "view"}}
通过触发此事件调用的 Javascript 函数:
onLevelSelect : function(event) {
var getSelectedLevel = event.target.selectedOptions[0].label; // error line
/*rest of the code goes below*/
}
当谈到“错误行”时,我收到了这个错误。
"ReferenceError: event is not defined".
我已经尝试过 window.event 和 event.which 并且我也尝试过将事件显式发送到函数"onLevelSelect"
。