例如:

this.node.getChildByName('XXXXX').on(cc.Node.EventType.TOUCH_END,回调函数,this);

这里的参数“this”作为“target”表示响应函数的 this 对象;

如果参数不加“this”,会获取不到响应函数的内部对象;

例如:

//设定这样一个回调函数
myCallBcak: function(){
    cc.log(this)
  },
this.node.getChildByName('XXXXX').on(cc.Node.EventType.TOUCH_END,this.myCallBcak);
//打印出undefined
this.node.getChildByName('XXXXX').on(cc.Node.EventType.TOUCH_END,this.myCallBcak,this);
或者
this.node.getChildByName('XXXXX').on(cc.Node.EventType.TOUCH_END,this.myCallBcak.bind(this));
//打印出正常的对象