我要做的是在ipad上通过网页显示一个office文件,用的是sencha touch。用来显示ppt的代码如下:其中fileUrl是ppt的所在地址,用这个是可以打开ppt的,但是打开的ppt无法占满整个iframe框架,只占了一半大小,请问高手如何解决呢
var html = '<iframe width="1024" height="680" frameborder="0" scrolling="yes" src="' + fileUrl + '"></iframe>'; reportPanel = new Ext.Panel({ floating: true, modal: true, centered: true, id: 'reportPanel', width: 1024, height: height + 50, //scroll: 'vertical', dockedItems: [{ xtype: 'toolbar', dock: 'top', items: [ { xtype: 'button', text: "Back", width: 70, ui: 'back', handler: function () { location.reload(); } }, { xtype: 'spacer' } ] }], hideOnMaskTap: false, stopMaskTapEvent: false, fullscreen: false, html: html });