欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

html 显示 pdf

程序员文章站 2022-05-10 11:53:59
html 显示 pdf文件四种方式: 1、 2、 3、 4、 ......

html 显示 pdf文件四种方式:

1、

<embed src="pdf/wobu.pdf" type="application/pdf" width="100%" height="100%">

 

2、

<iframe src="pdf/wobu.pdf" width="100%" height="100%"></iframe>

 

3、

<object data="pdf/wobu.pdf" type="application/pdf" width="100%" height="100%"></object>

 

4、

<object data="pdf/wobu.pdf" type="application/pdf" width="100%" height="100%">
  <iframe src="pdf/wobu.pdf" width="100%" height="100%" style="border: none;"></iframe>
</object>

这四种方式无需引用js,无需编写js

如有问题,欢迎留言