Posted in Javascript onAugust 12, 2010
//以构造函数方式添加私有属性和方法 function Person(name, age, address) { this.name = name; this.age = age; this.address = address; } //以原型方式添加公有属性、方法 Person.prototype = { constructor: Person, showName: function () { alert(this.name + this.age + this.address); } } //使用 var person = new Person("zhangsan", 22, "中国北京!"); person.showName();
javascript最常用与实用的创建类的代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@