摘要: //定义一个类function TestClass(name){ //定义一个属性,并设置默认值 this.Name = name || "jxh"; //定义一个方法 this.GetName = function() { return this.Name; }} 阅读全文
posted @ 2007-01-30 09:45 非我 阅读(549) 评论(0) 推荐(0) 编辑