NULL
博文链接:https://shixm.iteye.com/blog/381884abstract
Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple
but effective approach to ohject-oriented programming. Python's elegant syntax a
关于function类中定义变量this的简单说明
[removed]
function TObject(){
this.name1 = "aa";//这里不能写name,name是window的变量。否则无法得到验证结果
}
var t = new TObject();//执行中,this代表t
alert("window1="+this.name1);//没有值
alert("t="+t.name1);//有值
TObje