随笔分类 - js设计模式的代码
摘要:
阅读全文
摘要:
阅读全文
摘要:无标题文档
阅读全文
摘要:function getBeerById( id, callback){ _request('GET','URL'+id,function(res){ callback(res.responseText) }); }; function getBeerByIdBridge(){ getBeerById(id,function(res){ alert(res.toString()); }); //doAnothering; }; var el = do...
阅读全文
摘要:简单的装饰模式 抄自tom大叔的博客。热门那边就有了,去学习吧
阅读全文
摘要://singletonvar SingletonTester = (function(){ function Singleton(options){ options = options || {}; this.name = "SingletonTester"; this.pointX = options.pointX || 6; this.pointY = options.pointY || 10; }; var instance; var _static = { name : "Single...
阅读全文