- 注册时间
- 2013-5-3
- 最后登录
- 2024-11-20
- 阅读权限
- 150
- 积分
- 32966
- 精华
- 0
- 帖子
- 14366
|
bubbleParent: function (node, fn, scope) {
scope = scope || this;
if (node) fn.call(this, node);
var parentNode = this.getParentNode(node);
if (parentNode && parentNode != this.root) {
this.bubbleParent(parentNode, fn, scope);
}
},
代码就是这样,如果return了,肯定就不会继续 |
|