html pdf对象标签 - 参数不起作用

问题描述 投票:1回答:2

在这样一个简单的html对象标签中:

<object data='Calendar2012_2013.pdf#page=2' 
        type='application/pdf' 
        width='90%' 
        height='1000px'>

<p>It appears your Web browser is not configured to display PDF files. 
No worries, just <a href='p.pdf'>click here to download the PDF file.</a></p>

</object>

我试图在第2页上显示默认页面,但默认页面1仍显示。有谁知道什么是错的?

编辑:它似乎与Firefox一起工作,但我需要它与IE9一起工作...

html object internet-explorer-9 embed adobe-reader
2个回答
0
投票

Firefox使用PDF.js来显示PDF。 Chrome做了类似的事情。我认为使用IE9你会被转换为图像或某种javascript插件。前几天我回复了similar question


0
投票
<object type="application/pdf" width="90%" height="1000px">
   <param name="src" value="/Calendar2012_2013.pdf#page=2" />
   <p>It appears your Web browser is not configured to display PDF files.
      No worries, just <a href="p.pdf">click here to download the PDF file.</a>
   </p>
</object>

试试上面的代码。

© www.soinside.com 2019 - 2024. All rights reserved.