[原创]vbscript
在VBS中怎么样可以跳出当前的FOR循环,执行下一次循环,是CONTINUE.FOR吗???
在VBS中怎么样可以跳出当前的FOR循环,执行下一次循环,是CONTINUE.FOR吗???
2005-12-16 10:01

2005-12-16 10:06
2005-12-16 10:19
for i=1 to 10
if i=2 then
continue
end if
response.write(i)
next
这样是不行的,但你可以想想用别的方法啊,如:
for i=1 to 10
if not i=2 then
response.write(i)
end if
next
2005-12-16 11:35
谢谢

2005-12-17 16:51