摘要: 创建对象: function MyObject(name,title){ this.name = name; this.title = title; this.getName = function (){ return this.title; }; } var obj = new MyObject( 阅读全文
posted @ 2016-03-20 10:09 foo__hack 阅读(2303) 评论(0) 推荐(0) 编辑