摘要: 第三章创建对象的基本模式方法一:门户大开型var Book = function(isbn, title, author) { if(isbn == undefined ) throw new Error ('Book constructor requires an isbn.'); this.is... 阅读全文
posted @ 2015-03-16 19:51 oadaM92 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 第一章创建一个类方法一: var Anim = function() { ... }; Anim.prototype.start = function() { ... }; Anim.prototype.stop = function() { ... };方法二:... 阅读全文
posted @ 2015-03-16 19:44 oadaM92 阅读(146) 评论(0) 推荐(0) 编辑