摘要: //定义一个类function TestClass(name){ //初始化时总数+1 TestClass.prototype.Count++; //定义一个属性,并设置默认值 this.Name = name || "jxh"; //定义一个静态类属性 TestClass.prototype.Current.InternalName = this.Name; ... 阅读全文
posted @ 2007-02-01 09:47 非我 阅读(522) 评论(0) 推荐(0) 编辑