Ext.carousel.Carousel 似乎没有点击事件。如何让轮播响应点击事件?(点击,itemtap等)
问问题
1342 次
1 回答
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'
});
希望这有帮助。
于 2012-12-25T11:04:42.933 回答