摘要: 1.工厂模式 function createBlog(name, url) { var o = new Object(); o.name = name; o.url = url; o.sayUrl= function() { alert(this.url); } return o; } var bl 阅读全文
posted @ 2018-03-08 13:03 -weihaha 阅读(41) 评论(0) 推荐(0)