ボタンを含む 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;
});
};
関数がコンソール出力を介してボタンをループすることを保証できます。しかし、ボタンをクリックしても何も起動しません。
誰かが助けてくれることを願っています。ありがとう :)