企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
## 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("捕获异常结束") } ~~~