节点上的组件该如何设置监听事件呢?

this.node.on(‘mousedown’,function(event){dosomething})是用来监听节点的,该如何监听该节点上的一个label呢?
this.label.on(‘mousedown’,function(event){dosomething})出人意料的不能用

this.label.node.on(…

谢谢,刚解决:grin: