如何使用 sencha 在 ipad 中加载 pdf 文件?
我尝试了以下方法:
html:'<div id="scroller" style="width:99%;overflow:scroll;">' +
'<img style="width:100%;overflow:scroll;"' +
'src="resources/pdfFiles/help.pdf">' +
'</img></div>'
和
html:'<div id="scroller" style="width:99%;overflow:scroll;">' +
'<iframe style="width:100%;overflow:scroll;"' +
'src="resources/pdfFiles/help.pdf">' +
'</iframe></div>'
和
html:'<div style="height:99%;width:99%;overflow:scroll;">' +
'<embed type="application/pdf" width="100%" height="100%" src="resources/pdfFiles/help.pdf" /></div>'
和
html:'<object data="resources/pdfFiles/help.pdf" TYPE="application/x-pdf" width="100%" height="100%" </object>'
iframe 在 chrome 浏览器中工作正常并打开 pdf。但是在ipad中它打开了空白。img 标签仅在 ipad 中打开 pdf 的第一页。如何通过点击按钮在 ipad 中加载整个 pdf?任何帮助表示赞赏。