jsp中嵌入PDF

下载 pdfobject.min.js  

官网:https://pdfobject.com/

<script type="text/javascript" src="js/pdfobject.min.js"></script>

//设置展示pdf的容器 div

<div id="pdf" style="height: 800px; line-height: 162px;text-align: center;"></div>

//加载pdf,

if(PDFObject.supportsPDFs){
  // PDF嵌入到网页
  PDFObject.embed(文件路径, "#pdf" );    //参数2:div容器的id
} else {
  location.href = "/canvas";
}

 

posted @ 2020-05-26 15:22  白--小纯  阅读(665)  评论(0)    收藏  举报