embed PDF file in html using object tag

后端 未结 3 774
隐瞒了意图╮
隐瞒了意图╮ 2021-01-12 00:00

I m embeding a pdf document into my html code. For this i have wrote this code.



        
3条回答
  •  被撕碎了的回忆
    2021-01-12 00:28

    There are THREE ways to show a PDF in HTML: using embed, object, or iframe. Unfortunately using iframe will not allow the Adobe Javascript inside the PDF to post messages to the JS in HTML, because the hostContainer is undefined. Therefore I am forced to use embed or object. Fortunately thirtydot's style code also works great for object. Here is my working code...

    
    
    
    
    Preview
    
    
    
    
    
    Unable to open the PDF file.
    
    
    
    

    You can read more about the Javascript stuff here.

提交回复
热议问题