基本信息
源码名称:在线浏览pdf文档 例子源码 js
源码大小:1.44KB
文件格式:.zip
开发语言:js
更新时间:2014-11-30
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
pdf 在线 object 详见 www.pdfobject.com

html:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Embedding a PDF using PDFObject: Simplest example!</title>

<!-- This example created for PDFObject.com by Philip Hutchison (www.pipwerks.com) -->

<!-- CSS for basic page styling, not related to example -->
<link href="/css/examples.css" rel="stylesheet" type="text/css" />

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

<script type="text/javascript">

window.onload = function (){

	var success = new PDFObject({ url: "/pdf/sample.pdf" }).embed("pdf");
	
};

</script>
</head>

<body>
<h1>Embedding a PDF using PDFObject: Simplest example!</h1>
<p>This example uses one line of JavaScript wrapped in a <em>window.onload</em> statement.</p>

<div id="pdf">It appears you don't have Adobe Reader or PDF support in this web browser. <a href="/pdf/sample.pdf">Click here to download the PDF</a></div>

<p><a href="/index.php">&laquo; Return to PDFObject home</a></p>

</body>
</html>




/* PDFObject, copyright (C) 2008 Philip Hutchison (pipwerks.com). Documentation and examples are at www.pdfobject.com. Version 1.2, April 2011. MIT style license */
var PDFObject=function(y){if(!y||!y.url){return false;}var w="1.2",b=y.id||false,i=y.width||"100%",z=y.height||"100%",r=y.pdfOpenParams,a,x;var v=function(){var c=null;if(window.ActiveXObject){c=new ActiveXObject("AcroPDF.PDF");if(!c){c=new ActiveXObject("PDF.PdfCtrl");}if(c!==null){return true;}}return false;};var u=function(){var c,f=navigator.plugins,d=f.length,e=/Adobe Reader|Adobe PDF|Acrobat/gi;for(c=0;c<d;c  ){if(e.test(f[c].name)){return true;}}return false;};var t=function(){var c=navigator.mimeTypes["application/pdf"];return(c&&c.enabledPlugin);};var s=function(){var c=null;if(u()||v()){c="Adobe";}else{if(t()){c="generic";}}return c;};var q=function(){var e=document.getElementsByTagName("html");if(!e){return false;}var c=e[0].style,d=document.body.style;c.height="100%";c.overflow="hidden";d.margin="0";d.padding="0";d.height="100%";d.overflow="hidden";};var p=function(d){var c="",e;if(!d){return c;}for(e in d){if(d.hasOwnProperty(e)){c =e "=";if(e==="search"){c =encodeURI(d[e]);}else{c =d[e];}c ="&";}}return c.slice(0,c.length-1);};var o=function(d){var c=null;switch(d){case"url":c=a;break;case"id":c=b;break;case"width":c=i;break;case"height":c=z;break;case"pdfOpenParams":c=r;break;case"pluginTypeFound":c=x;break;case"pdfobjectversion":c=w;break;}return c;};var n=function(d){if(!x){return false;}var c=null;if(d){c=(d.nodeType&&d.nodeType===1)?d:document.getElementById(d);if(!c){return false;}}else{c=document.body;q();i="100%";z="100%";}c.innerHTML='<object	data="' a '" type="application/pdf" width="' i '" height="' z '"></object>';return c.getElementsByTagName("object")[0];};a=encodeURI(y.url) "#" p(r);x=s();this.get=function(c){return o(c);};this.embed=function(c){return n(c);};return this;};