软测单独项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
767 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>帮助文档</title>
<script src="/js/jquery-2.1.3.min.js"></script>
<script src="PDFObject.js"></script>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
margin: 0 auto;
padding: 0px
}
</style>
<script type="text/javascript">
$(document).ready(function () {
var options = {
pdfOpenParams: { view: 'FitV' },
fallbackLink: '您的浏览器暂不支持pdf'
}
PDFObject.embed("Help.pdf", "#example1", options);
});
</script>
</head>
<body>
<div id="example1" style="height:95%;"></div>
</body>
</html>