if condition1 then
if condition1.1 then
do something1.1
else if condition1.2 then
do something1.2
else -- 报错的地方
do something1.3
endif
else
do something2.2
endif
如上,else那里一直在报错。
使用了排除法,把else那块去掉,仍报错。
整个中间的if那段去掉,编译成功。
else if和else去掉,编译成功。
else if去掉,编译成功。
好吧,else if的问题。elseif应该是没有空格的!!!
排除法是个好方法,细心是个好习惯
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)