向 DOM 添加事件时我很困惑。在这段代码中
App.onLaunch = function(options) {
//...
//inside resourceLoader.loadResource...
var doc = Presenter.makeDocument(resource);
doc.addEventListener("select", Presenter.load.bind(Presenter)); //add this line
Presenter.pushDocument(doc);
//...
}
从哪里来"select"
?
我怎么知道"select"
可以从某些元素(例如按钮)触发该事件?
有这方面的文件吗?