# 跳过后续步骤(continue) 在循环中,跳过后续步骤,开始下一次循环。
类似于编程语言中的**continue**语句。 与“跳出循环”的主要区别为: - 跳出循环:中止所在循环模块的执行,不再循环下一次。 - 跳过后续步骤:不中止循环,而是跳过本次循环的后续步骤直接开始下一次循环。 ![image.png](https://cdn.nlark.com/yuque/0/2019/png/272392/1563328666343-b6dbdd54-3b2b-440f-ac68-d0f0c1e15899.png#align=left&display=inline&height=209&name=image.png&originHeight=314&originWidth=1180&size=26121&status=done&style=none&width=786.6666666666666) # 示例 - 示例:跳过后续步骤 [https://getquicker.net/sharedaction?code=d0464310-2558-4595-75ba-08d709af9122](https://getquicker.net/sharedaction?code=d0464310-2558-4595-75ba-08d709af9122)