js终止程序执行的方法共有三种

(一)在function里面(普通js方法)
(1)return;
(2)return false;

(二)非function方法里面(如ajax方法)
alert(“发生异常”);
throw SyntaxError();
alert(“不会输出”);

(三)非function方法里面
$(“body”).on(“tap”,".go-detail",function(e){
e.preventDefault();
e.stopPropagation();
}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐