11

如果满足条件,如何停止脚本执行?没有别的办法可以吗?例如:

if(data == 'false')
{
stop
}
rest of the function...
4

1 回答 1

27

您可以退出函数:

if (data == 'false') {
    return false;
}
于 2012-11-30T00:32:55.687 回答