帮助添加url href

时间:2010-09-26 10:49:58

标签: iphone html

我对如何添加以下代码的链接感到困惑

    onReady: function() {
    new Ext.TabPanel({
        fullscreen: true,
        type: 'dark',
        sortable: true,
        items: [{
            title: 'Tab 1',
            html: '1',
            cls: 'card1'

当我单击选项卡1时能够直接加载URL。此代码来自sencha触摸模板。我希望htm部分能够在选择该选项卡时加载URL。感谢

1 个答案:

答案 0 :(得分:1)

您可以使用autoLoad config option

你可以尝试,

  onReady: function() {
new Ext.TabPanel({
    fullscreen: true,
    type: 'dark',
    sortable: true,
    items: [{
        title: 'Tab 1',
       autoLoad   : {
                       url :youryrl,
                       scripts:true,
                        callback: function(){ yourcallbackfunction(); }
                     },

有关详细文档,请参阅

http://examples.extjs.eu/

http://dev.sencha.com/deploy/dev/docs/

http://dev.sencha.com/deploy/ext/docs/output/Ext.TabPanel.html

http://www.sencha.com/learn/Tutorial:TabPanel_Basics

希望这有帮助。