摘要: 1 with 语句 为一个或一组语句指定默认对象。用法:with (<对象>) <语句>;with 语句通常用来缩短特定情形下必须写的代码量。在下面的例子中,请注意 Math 的重复使用:x = Math.cos(3 * Math.PI) + Math.sin(Math.LN10); y = Math.tan(14 * Math.E);当使用 with 语句时,代码变得更短且更易读:with (Math) {x = cos(3 * PI) + sin(LN10);y = tan(14 * E); }2 this 对象 返回“当前”对象。在不同的地方,this 代表不同的 阅读全文
posted @ 2012-06-28 07:52 大智若简 阅读(319) 评论(0) 推荐(0) 编辑