Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sencha touch 中的点击事件被阻止 那么我现在如何触发该事件呢?
如果你想在标签上有一个 Tap 事件,你可以这样做:
label.element.on({ tap : function(e, t) { ... } });
希望这可以帮助。