摘要: //js 词法分析以及执行流程function a(b){ alert(b); function b() { alert(b); } b();}a(1);/* 词法分析期0:形成Active Object AO={}; 1: 1.1: 分析参数... 阅读全文
posted @ 2014-04-26 15:13 arvim 阅读(199) 评论(0) 推荐(0) 编辑
摘要: //js继承function classA(msg){ this.age = 23; this.name = 'luowen'; if(typeof classA._initialed == 'undefined') classA.prototype.sayHi = ... 阅读全文
posted @ 2014-04-26 12:14 arvim 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-04-26 11:27 arvim 阅读(196) 评论(0) 推荐(0) 编辑