targetOff !#en Removes all callbacks previously registered with the same target. !#zh 移除目标上的所有注册事件。
例子:
this.node.on('aaa',A.callback1,A);
this.node.on('bbb',A.callback2,A);
this.node.on('ccc',B.callback1,B);
this.node.on('ddd',B.callback2,B);
使用:this.node.targetOff(A);
效果:取消this.node上绑定的所有target为A的事件