添加一个数组来存储事件触发时的值,然后在事件回调函数中使用push()方法将每个值添加到该数组中。示例代码如下:
const button = document.querySelector('button'); const values = []; button.addEventListener('click', function(event) { values.push(event.target.value); });
上一篇:addEventListener只能触发一次的问题。
下一篇:addEventListener只能在一个按钮上工作(多个页面)