creator绑定touchstart事件

一下是代码,就正常绑定触摸事件,但是就是没有没办法移动。怎么解决?
this.node.on(cc.Node.EventType.TOUCH_START,function(event){
this.TOUCHS = true;//按下状态
this.TOUCHE = false;//按完状态
this.sX = event.currentTouch.getLocationX();
this.sY = event.currentTouch.getLocationY();
cc.log(event);
}.bind(this));

TOUCH_START事件下返回的getLocationX & getLocation都是你的鼠标当前的点击坐标轴,如果要移动的话可以使用TOUCH_MOVE