jqueryはオンラインPDFファイルをプレビューして、PDFファイルを開きます。

1436 ワード

最も主要なのはjqueryのプラグインjquery.media.jsを使うので、このプラグインを使って実現しやすいです。
 
コアコード
<!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" xml:lang="zh-CN" dir="ltr">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Online View PDF</title>
<script type="text/javascript" src="http://sources.ikeepstudying.com/js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="jquery.media.js"></script>
<script type="text/javascript">
    $(function() {
        $('a.media').media({width:800, height:600});
    });
</script>
</head>
 
<body>
<a class="media" href="guice.pdf">PDF File</a>
</body>
</html>
 
http://sources.ikeepstudying.com/jquery.media/pdf.php
 
jquery.media.jsを使って直接にpdfファイルに接続するリンクを開けて、需要を満たしました。
 
プロジェクト住所:http://jquery.malsup.com/media/