我在 ListView 中有一个包含按钮的项目列表。我找不到将事件侦听器添加到按钮的方法...
这是代码:
JS:
downloadsListView = document.getElementById('downloads').winControl
downloadsListView.itemDataSource = JobList.dataSource
downloadsListView.onloadingstatechanged = function() {
var _this = this;
return WinJS.Utilities.query("button.play_pause_button", document.getElementById('downloads')).forEach(function(element) {
console.log(element);
return element.onclick = _this._play_pause_download;
});
};
我可以确保该功能确实通过控制台输出循环遍历按钮。但是点击按钮什么也不会触发。
我希望有人能帮帮忙。谢谢 :)