简单易懂的JavaScript异常处理try-catch的用法

作者:V君 发布于:2014-2-3 0:13 Monday 分类:挖坑经验

今天为了一个蛋疼的事儿不得不补一下JS的异常处理。


try {

  eval('alert("Hello world)'); //missing closing quote

catch(error) {

  for (var prop in error) 

    console.log( prop + ": " + error[prop]);

}


查看控制台输出:

name: SyntaxError

message: Unterminated string constant

number: -2146827273

description: Unterminated string constant

 

一看就懂,无需多言。

 

标签: 软件开发 javascript

引用地址:

发表评论:

Powered by emlog 去你妹的备案 sitemap