移动浏览器(iPhone和Android)支持PDF Viewer

时间:2011-12-10 09:49:37

标签: android iphone html html5 xhtml

移动浏览器是否广泛支持<object>标记?!我正在尝试嵌入PDF文件,但它似乎不受支持。

我正在使用以下html查看PDF

<object data="pdf/sample.pdf#view=Fit" type="application/pdf" width="100%" height="400px"> 
    <p>It appears you don't have Adobe Reader or PDF support in this web browser. <a rel="external" href="pdf/sample.pdf">Click here to download the PDF</a></p>
</object>

并使用PDFObject,但两者都无法在移动浏览器中使用!

3 个答案:

答案 0 :(得分:2)

没有插件,任何浏览器都不支持PDF文件的原生呈现(Google Chrome浏览器除外){。{3}}。

但您可以使用Google文档查看器在网页内显示PDF文件,如here所述。

答案 1 :(得分:1)

如果嵌入对您不重要,您可以在单独的页面上链接到PDF。

Safari(和UIWebViews)支持PDF的渲染,我不是100%肯定Android,但我怀疑它是一个类似的故事。

PDF in safari

答案 2 :(得分:1)

使用google docs

在iframe中加载您的网址
<iframe id="pdfviewer" src="http://docs.google.com/gview?embedded=true&url=YOUR_URL_HERE&amp;embedded=true" frameborder="0" width="100%" height="100%"></iframe>