js在线预览pdf文件
Posted 八月长安个人专栏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js在线预览pdf文件相关的知识,希望对你有一定的参考价值。
js在线预览PDF文件
一、效果预览
二、实现代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>js图片在线预览</title>
<script src="$pageContext.request.contextPath/js/pdfobject.js" type="text/javascript"></script>
<script language=javascript>
//预览PDF文件
function preViewPDF(obj)
var fileUrl=$(obj).attr("fileUrl");
var title=$(obj).attr("title");
$("#pdfDiv").attr("src",fileUrl);
$("#pdftitle").html(title);
PDFObject.embed(fileUrl, "#pdfDiv");
$('.pdfobject').css('width','59%');
$('.pdfobject').css('height','80%');
</script>
</head>
<body>
<input type="file" οnchange="previewFile()"><br>
<img src="" height="200" width="300" alt="Image preview..."/>
<div class="row">
<c:forEach items="$fileList " var="file" varStatus="status">
<div class="row" id="div$status.index+1 ">
<div class="col-md-4">
<div class="form-group" >
<label class="control-label col-md-4" style="font-weight:bold;padding-top:0px;">$status.index+1 .</label>
<c:choose>
<c:when test="$file.suffix == '.pdf'">
<a title="$file.fileName " οnclick="preViewPDF(this)" data-toggle='modal' data-target='#large_pdf' fileUrl="<%=baseUrl %>uploadfiles/$file.fileUrl " target=_blank>pdf预览</a>
</c:when>
<c:otherwise>
无效文件
</c:otherwise>
</c:choose>
</div>
</div>
</div>
</c:forEach>
</div>
<!-- Modal 弹出框-->
<div class="modal fade bs-modal-lg in" id="large_pdf" tabindex="-1" data-backdrop="static" data-keyboard="false" role="dialog" aria-hidden="false" >
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
<h3 class="modal-title" id="pdftitle"></h3>
</div>
<div class="modal-body" style="width: 2500px;height:700px;">
<div id="pdfDiv" style="width: 1500px;height: 700px;"></div>
</div>
</div>
</div>
</div>
</body>
</html>
三、pdfobject.js下载链接:http://download.csdn.net/download/weber0000/9975311
以上是关于js在线预览pdf文件的主要内容,如果未能解决你的问题,请参考以下文章
文档在线预览使用js前端实现wordexcelpdfppt 在线预览
文档在线预览使用js前端实现wordexcelpdfppt 在线预览