How to stop the event bubble in easljs?
问题 I have a mousedown event listener on stage and a mousedown event listener on a shape.when I click on the shape, the mousedown event listener on stage will also fire? How to solve this? var stage = new createjs.Stage("test"); stage.addEventListener('stagemousedown',mouseDown); var shape = new createjs.Shape(); shape.graphics.beginStroke("#000").setStrokeStyle(8,"round").drawRect(0, 0, 100, 100); shape.addEventListener('mousedown',smouseDown); stage.addChild(shape); 回答1: The stagemousedown