Ext.carousel.Carousel似乎没有点击事件。如何让旋转木马响应点击事件? (点按,itemtap等)
答案 0 :(得分:4)
点按事件不会直接对组件起作用。相反,它们可以在组件元素上正常工作。因此,对于您的情况,您可以像这样使用它:
在你的控制器的“控制”中,
control : {
// Your carousel reference
"carousel" : {
initialize : function(carousel){
carousel.element.on('tap', function(e, el){
// Here you will get the target element
console.log(e.target, el);
}, this);
}
}
}
如果您只想捕获特定类型元素的点击事件,则可以使用这种方式委托:
carousel.element.on('tap', function(e, el){
// Here you will get the target element
console.log(e.target, el);
}, this, {
delegate : 'div.my-element'
});
希望得到这个帮助。