多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 1.try-catch ~~~ try{ alertt(1) }catch(err){ console.log(err.message) } //alertt is not defined ~~~ ## 2.throw ~~~ <script> var x = 1; try{ if(x==1) throw "x不能等于1" }catch(err){ console.log(err) } ~~~ ## 3.finally ~~~ var x = 1; try{ if(x==1) throw "x不能等于1" }catch(err){ console.log(err) }finally{ console.log("捕获异常结束") } ~~~