当前位置: 代码迷 >> HTML/CSS >> Sencha Touch加载远道Html
  详细解决方案

Sencha Touch加载远道Html

热度:1192   发布时间:2013-07-01 12:33:04.0
Sencha Touch加载远程Html

Sencha Touch加载远程Html,可以使用iframe,效果还不错,代码如下:

?

new Ext.Application({ 
    name : 'App', 

    launch : function () { 
        new Ext.Panel({ 
            fullscreen : true, 
            layout     : 'fit', 
            items      : [ 
                { 
                    xtype  : 'panel', 
                    scroll : 'vertical', 
                    layout : 'fit', 
                    html   : '<iframe width="100%" height="100%" src="http://www.test.com"></iframe>' 
                } 
            ] 
        }); 
    } 

});  

?

  相关解决方案