摘要:
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大叔的博客。热门那边就有了,去学习吧 阅读全文
摘要:
工厂模式,抄自tamu大叔博客的 阅读全文