清除旋转木马的所有元素 - Sencha

时间:2011-05-31 15:42:36

标签: extjs carousel items

Dows任何人都知道如何删除sencha中旋转木马上的所有元素???

carousel = new Ext.Carousel({
    fullscreen: true,
    defaults: {
        cls: 'carousel-item'
    },
    items: [{
            id:'tab-1',
            html: '',
            cls: 'card card1'
        },{
            id:'tab-2',
            html: '<p>Clicking on either side of the indicators below</p>',
            cls: 'card card2'
        },{
            id:'tab-3',
            html: 'Card #3',
            cls: 'card card3'
        }]
});

非常感谢

1 个答案:

答案 0 :(得分:5)

您只需一行代码即可清除旋转木马内的所有组件:

carousel.removeAll();

希望这有帮助。