有没有办法在条件切换中退出案例?

发布于 2025-01-16 08:12:11 字数 143 浏览 2 评论 0原文

我有处理事件侦听器的代码,并且我需要代码在继续执行之前暂停并等待事件。但是,此代码是在 switch() 语句内运行的。有没有办法做这样的事情来退出案件? 案例(数字):if(值){break;} 顺便说一句,这是在 code.org 中完成的。

I have code which deals with an event listener, and I need the code to pause and wait for the event before continuing execution. However, this code is run inside of a switch() statement. Is there a way to do something like this to exit the case?
case(number): if(value){break;}
This is being done in code.org by the way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

太阳公公是暖光 2025-01-23 08:12:11

中断将允许您继续在函数中进行处理。如果您只想在函数中执行此操作,则只需从开关返回即可。

A break will allow you continue processing in the function. Just returning out of the switch is fine if that's all you want to do in the function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文