4

煎茶のカルーセルのすべての要素を削除する方法を誰もが知っていますか?

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'
        }]
});

どうもありがとう

4

1 に答える 1

5

1行のコードで、カルーセル内のすべてのコンポーネントをクリアできます。

carousel.removeAll();

お役に立てれば。

于 2011-05-31T15:51:19.913 に答える