我需要停止我的脚本。我不想写更多的代码,if(...) return false
因为我会多次使用它。
我的英语很差。这是我在这个网站上的第一个问题。:)
你可以简单地写return false;
来这样做。
为了退出脚本的所有范围,您可以抛出异常并在脚本的外部范围内捕获它;)这要求您调整异常处理。
请注意:最好以这种方式编写程序,以下不是必需的!
function ExitException() {}
try { //Do your script-stuff here
Foo();
//and do this at any place where you wish to exit:
throw new ExitException;
}
catch (e) {
if (e instanceof ExitException) //This is an Exit. All fine.
console.log("Exit");
else //Pass Exception to the Browser
throw e;
}