javascript 面向对象(多种创建对象的方式)

第一种:基于Object对象

var person = new Object(); person.name = 'My Name'; person.age = 18; person.getName = function(){ return this.name; }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpwsgw.html