异常的抛出和捕获
Posted john。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异常的抛出和捕获相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>异常的抛出和捕获</title> <script type="text/javascript"> //快捷键F12,或者找到开发者工具 查看问题 //只要出现异常(比如拼写错误),没有处理,脚本就中断执行 //出错后面的就执行不到了 try{ for(var i=0; i<5;i++){ document.write(i+"<br/>"); if(i>2){ //抛出异常:throw throw new Error("错误!错误!"); } } }catch (e){ document.write(e.message+"<br/>"); }finally{ document.write("一定会执行"+"<br/>") } document.write("finish<br/>") </script> </head> <body> </body> </html>
以上是关于异常的抛出和捕获的主要内容,如果未能解决你的问题,请参考以下文章