关于if then return
请教一下。如果其中gf("sk", this)=0的话。return是跳出这段还是继续进入死循环?
if up(request) = 'TRUE' then
if gf("sk", this) = 0 then
return
end if
end if
[解决办法]
跳出这段,不执行下面的语句
相当于 if up(request) = 'TRUE' and gf("sk", this) = 0 then return
发布时间: 2012-03-13 11:21:11 作者: rapoo
关于if then return
请教一下。如果其中gf("sk", this)=0的话。return是跳出这段还是继续进入死循环?
if up(request) = 'TRUE' then
if gf("sk", this) = 0 then
return
end if
end if
[解决办法]
跳出这段,不执行下面的语句
相当于 if up(request) = 'TRUE' and gf("sk", this) = 0 then return