我通过以下方式制作了一个自定义的 Lime JS sprite 类:
test.obj = function() {
lime.Sprite.call(this);
.
.
this.label = new lime.Label(). ...;
this.appendChild(this.label);
}
goog.inherits(test.obj, lime.Sprite);
我无法让标签点击冒泡到根程序;它总是吞噬事件。您是否需要做一些特别的事情才能单击标签以冒泡到我的根事件处理程序,即:
goog.events.listen(objinstance, ["click", "touchstart"], function() { .. });