js---- with语句

javascript中的with语句介绍。

with

为一组语句创建缺省的对象。在这一组语句中,任何不指定对象的属性引用都将被认为是缺省对象的。

实现版本 Navigator 2.0, LiveWire 1.0

语法

with (object){
   statements
}

参数

object 为语句指定要使用的缺省对象,两边必须有圆括号。
statements 任意语句块。

示例

下面的语句指定了  Math 对象作为缺省对象。在 with 语句里引用的  PI 属性、 cos 和  sin 方法就没有指定对象,JavaScript 会假定这些引用都是针对  Math 对象的。

var a, x, y
var r=10
with (Math) {
   a = PI * r * r
   x = r * cos(PI)
   y = r * sin(PI/2)
}

 

 

 

 

所有 JavaScript 的语句:

break
comment
continue
delete
do...while
export
for
for...in
function
if...else
import
labeled
return
switch
var
while
with

**********************************************************
*转自 http://www.itlearner.com/code/js_ref/stmt17.htm#1004910
**********************************************************

你可能感兴趣的:(JavaScript,Math,object)