我在學習如何使用while loop
,並提出了一個場景,其中while loop
可能適用。JavaScript - while循環
假設20張左右的圖片具有類似的URL被佈置在一個頁面象下面這樣: http://img7.italian.uk/pastaimages/6253.jpg
http://img7.italian.uk/pastaimages/4218.jpg
http://img7.italian.uk/pastaimages/7657.jpg
...(根據該模式,僅URL的最後一部分是對於每個不同的圖片)...
在所有以http://img7.italian.uk/pastaimages/*
開頭的圖片中,如果第一張圖片是http://img7.italian.uk/pastaimages/6253.jpg
,只刷新當前頁面。
只要第一張照片是「6253」,同樣的動作就會重複出現。
但是,一旦第一張圖片不再是「6253」之一,則停止循環,並單擊具有http://img7.italian.uk/pastaimages/*
網址,如「3585」或8291等目前的第一張圖片
我不知道怎麼樣去做這件事。
while (// 1st image === 6253) {
//refresh the current page
}
// once 1st image is no longer 6253, stop the loop and
// click the current first picture that ends with something like 3585, 8291 etc.
爲什麼不在循環中使用if?似乎只有當第一個圖像具有特定ID時,纔想繼續迭代。 –