当前位置:网站首页>Open display PDF file in web page
Open display PDF file in web page
2022-07-07 23:57:00 【Liu Chu, Ge Nian】
List of articles
1、 Click on PDF The file link
Click on PDF The file link opens on a new page pdf file ( take PDF Files are placed in and HTML File in the same directory ):
<a href="Test.pdf" target="_blank">PDF<a>
If you will PDF Change the document to Docx file , Then click to download the page , Don't like PDF Show the content on a new page like a file ‘;
If you will PDF Change file to picture file , Then click to display the picture on the new page ;
If you will PDF Change the file to a folder , Then open the whole directory , And you can access its content , similar FTP service
2、 Through your browser :360、Firefox、Chrome
<embed width="800" height="600" src="test.pdf"></embed>
3、 Through your browser :360、IE Failed browser :Firefox、Chrome
<object classid="clsid:CA8A9780-280D-11CF-A24D-444553540000" width="800" height="600" border="0">
<param name="SRC" value="test_pdf.pdf">
</object>
Here's the whole point :
<object classid="clsid:CA8A9780-280D-11CF-A24D-444553540000" width="100%" height="100%" border="0"><!--IE-->
<param name="_Version" value="65539">
<param name="_ExtentX" value="20108">
<param name="_ExtentY" value="10866">
<param name="_StockProps" value="0">
<param name="SRC" value="testing_pdf.pdf">
<embed src="testing_pdf.pdf" width="100%" height="800" href="testing_pdf.pdf"></embed><!--FF-->
</object>
4、 Through your browser :360、Firefox、IE、Chrome
<iframe src="test_pdf.pdf" width="800" height="600"></iframe>
边栏推荐
猜你喜欢
【编程题】【Scratch二级】2019.03 垃圾分类
C - linear table
Seven years' experience of a test engineer -- to you who walk alone all the way (don't give up)
Basic learning of SQL Server -- creating databases and tables with the mouse
【路径规划】使用垂距限值法与贝塞尔优化A星路径
Solutions to problems in sqlserver deleting data in tables
Binary sort tree [BST] - create, find, delete, output
FFA与ICGA造影
An example analysis of MP4 file format parsing
ROS从入门到精通(九) 可视化仿真初体验之TurtleBot3
随机推荐
一份假Offer如何盗走了「Axie infinity」5.4亿美元?
Go learning notes (2) basic types and statements (1)
About the difference between ch32 library function and STM32 library function
Where are you going
Preliminary test of optical flow sensor: gl9306
At the age of 35, I made a decision to face unemployment
HDU - 1260 Tickets(线性DP)
Enterprise application demand-oriented development of human resources department, employee attendance records and paid wages business process cases
go time包常用函数
数据库查询——第几高的数据?
95.(cesium篇)cesium动态单体化-3D建筑物(楼栋)
受限线性表
【编程题】【Scratch二级】2019.12 飞翔的小鸟
Solutions to problems in sqlserver deleting data in tables
mysql8.0 ubuntu20.4
BSS 7230 flame retardant performance test of aviation interior materials
Traduction gratuite en un clic de plus de 300 pages de documents PDF
LinkedBlockingQueue源码分析-新增和删除
@Configuration注解的详细介绍
C - minute number V3