私は次のjQueryループを持っていますが、各ループアクション内にはユーザーの操作があり、コードはユーザーの操作が完了するまで待機する必要があります。ループを一時停止する可能性はありますか、それとも他の方法でそれを実現することは可能ですか?
jQuery.each([345, 897, 345 /* ... */], function(index, value) {
// User interaction, need to wait the user finishing/answer
// Here is a jQuery UI dialog with an input field in it
// After the user entered their value and hit the submit button
// which fires an own callback which could also continue the loop somehow?
});