标签:
Error
1 // 语法 throw new Error("消息"); 类似于C#中的Exception对象 2 // alert(num); 3 try { 4 throw new Error("num is not defined"); 5 } catch (e) { 6 alert(e); 7 } 8 9 // 常用 10 try { 11 throw {msg:"错误异常", dateTime:new Date()}; 12 } catch (e) { 13 alert(e.msg + "\r\n" + e.dateTime); 14 } 15 16 // 同c#的try-catch-finally写法 17 try { 18 19 } catch (e) { 20 21 } finally { 22 // 释放资源 23 }
Math
常用的有一个创建随机数的方法
Math.random() 产生0 到 1 之间的数,位数不定。
标签:
原文地址:http://www.cnblogs.com/zk-ljc/p/5559831.html