摘要: /* * */ function Scope(){ this.$$watchers = []; } //valueEq为真时,基于值的检查开启。 Scope.prototype.$watch = function(watchFn, listenerFn, valueEq){ var watcher 阅读全文
posted @ 2017-02-20 22:33 springmin 阅读(388) 评论(2) 推荐(0) 编辑
摘要: 1.function是对象,定义一个function就会在堆中创建一个对象。生成函数如下: (1) var a = new Function("document.write(1)"); (2) var a = function(){document.write(1);} (3) function a 阅读全文
posted @ 2017-02-20 22:19 springmin 阅读(271) 评论(0) 推荐(0) 编辑
摘要: function A(a){ this.a = a; } A.prototype.get = function(){ return this.a; } 1.函数A、prototype、constructor之间关系 prototype是函数A的一个属性,指向了一个对象,指向的对象有一个constru 阅读全文
posted @ 2017-02-20 21:34 springmin 阅读(133) 评论(0) 推荐(0) 编辑