异常处理 说明:与python中的用法相似,可以认为是一种特殊的流程控制语句 示例: try { // 手动抛出异常 throw '出问题了&_&' alert('normal') } catch (e) { alert(e) }