所以我想说我想让代码停止..
var test = "good";
if (test === "good") {
alert("The test is good");
}
else if (test ==="bad") {
alert("Oh no, the test went bad!");
我放在这里是什么,如果测试结果不好,代码将完全停止,并且在通过测试时不会提醒您
}
alert("You've passed the test");
同样,这是一个例子,不是我正在研究的实际项目,但我该怎么办?
答案 0 :(得分:0)
尝试exit();
这应该适合你。