我有4张图片的旋转木马
this.add({
id: 'mainRow-' + index,
xtype: 'carousel', flex:1,
defaults: {
flex:1
}, items: [
{
html: '<p><img src="image.jpg"></p>'
},
{
html: '<p><img src="image.jpg">
},
{
html: '<p><img src="image.jpg">
}
]
});
我想点击哪个点击。如果用户点击第一次点击,则会打开firstview.js,第二次点按,secondview.js。
我的控制器代码是;
control : {
root: {
pop : 'onRootPop',
push : 'onRootPush'
},
"carousel" : {
initialize : function(carousel){
carousel.element.on('tap', function(e, el){
// Here you will get the target element
// console.log(e.target, el);
Logger.log("fassss" + el);
EDevlet.app.getController('MainController').showNews();
}, this);
}
}
}
},
如果用户点击轮播,初始化功能工作。但我必须点击哪个点击。(第一个第二个第三个)?。