摘要: //define classvar Person = function (name, age){ var _slef = this; //private property _slef.name = name; _slef.age = age; if (typeof Person._initialized == 'undefined') { //private method Person.prototype._eat = function () { console.log('eat....'); } ... 阅读全文
posted @ 2013-08-16 23:29 wangyan9110 阅读(228) 评论(0) 推荐(0) 编辑