//题目:分别弹出什么内容?
<!--
function test(){
this.a = 1;
alert(this); //[object Window]
}
test(); var t = new test(); //[object Object] alert(a); //
//-->
从CSDN看到的,分享一下
//题目:分别弹出什么内容?
<!--
function test(){
this.a = 1;
alert(this); //[object Window]
}
test(); var t = new test(); //[object Object] alert(a); //
//-->
从CSDN看到的,分享一下