日期:2014-05-17  浏览次数:20809 次

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

});  

?