AS2 - 如何仅终止一级条件测试
Break 语句终止整个循环或测试,但我只想终止它一级。你会怎么做?
The break statement terminates the whole loop or test, but I want to terminate it only one level. How would you do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 for 循环中使用标签。这是as3,但我认为它也应该在as 2中工作:http://jacksondunstan.com/articles/1228
use labels in your for loop. this is as3 but i think it should work in as 2 as well:http://jacksondunstan.com/articles/1228