在VBS中怎么样可以跳出当前的FOR循环,执行下一次循环,是CONTINUE.FOR吗???
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 ifnext
谢谢