ECMAScript语句之with 语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ECMAScript语句之with 语句相关的知识,希望对你有一定的参考价值。
ECMAScript with 语句,用于设置代码在特定对象中的作用域(with运行缓慢,设置了属性值时更加缓慢,最好避免使用with语句)一、with 语句用于字符串(配合toUpperCase()方法)
var a = "CGLweb前端";
with(a)
console.log(toUpperCase()); //输出 "CGLweb前端"
二、with 语句可以方便地用来引用某个特定对象中已有的属性,但是不能用来给对象添加属性。要给对象创建新的属性,必须明确地引用该对象
function xinxi()
this.name = "青格勒";
this.age = "28";
this.gender = "男";
var people=new xinxi();
with(people)
var str = "姓名: " + name;
str += "、年龄:" + age;
str += "、性别:" + gender;
console.log(str);
三、with语句中的对象不是作为执行环境添加到作用域中,而是执行环境之中作用的
var obj1 = [
a: 11,
c: 12
];
function cgl() (www.gendna5.com)
var a = 2;
with (obj1)
a = 3;
c = 4;
console.log(a); //3
console.log(c); //4
console.log(obj1); //[ a: 11 , c: 12 ]
console.log(obj1[0].a); //11
console.log(obj1[1].c); //12
cgl();
console.log(obj1[0].a); //11
console.log(obj1[1].c); //12
这个因为资料有限就说道这里吧。
以上是关于ECMAScript语句之with 语句的主要内容,如果未能解决你的问题,请参考以下文章