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

时间:2012-09-25 03:32:54

标签: html object internet-explorer-9 embed adobe-reader

在这样一个简单的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一起工作......

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分: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>

尝试上面的代码。