forEach 循环遍历数组并执行特定操作。但是,当它到达“b”时,预计会暂停,之后可以继续,直到按下按钮。
该按钮不应直接重新激活循环,而是在继续之前必须发生的事件。具体来说,当按下按钮'b'时,它的值变成'c',这将使循环继续。因此,重要的是,在按下按钮之前,循环不会处理后面的元素。
你会如何把它放在 forEach 循环中?
array.forEach(item => {
if (item == 'a') {
console.log(item)
}
if (item == 'b') {
pause until button is pressed, and only then continue with the next step
}
})
慕桂英3389331
相关分类