如何网页中嵌入PDF:
在网页中:
常用的几种PDF预览代码片段如下:
代码片段1:
<object type="application/pdf" data="file:///D:/atm/prtPDF/2016-07-28622262104000373211200009087.pdf"
           id="review" style="width:800px;  height:750px; margin-top:45px;  margin-left:500px" >
</object>代码片段2:
<object type="application/pdf" data="D:/atm/prtPDF/2016-07-28622262104000373211200009087.pdf"
           id="review" style="width:800px;  height:750px; margin-top:45px;  margin-left:500px" >
</object>代码片段3:
<embed src="file:///D:/atm/prtPDF/2016-07-28622262104000373211200009087.pdf"
         id="review" style="width:800px;  height:750px; margin-top:45px;margin-left:500px" >
</embed>


评论0