autojs forEach sleep


这个foreach里放sleep的话

UiCollection.forEach(

 

sleep(1000)

)

是可以达到依次顺序处理每个元素的效果的(下一个元素会等待上一个元素sleep完成)

forEach calls callbackfn once for each element present in the array, in ascending order. callbackfn is called only for elements of the array which actually exist; it is not called for missing elements of the array.

对于每个元素是按升序,调用里面的函数的

跟下标操作一个效果

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/279600.html

(0)
上一篇 2022年8月8日
下一篇 2022年8月8日

相关推荐

发表回复

登录后才能评论