最近论坛里有人提到了,在线pdf阅读器怎么做。我百度了一下,发现很多人都很懒,程序员都很懒吗?
答案是否定的。为什么都不愿意去搜索一下呢,网上很多答案的。我这里就列举一例,大家共勉。
看代码,页面代码(herman.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>pdf在线阅读器</title> <script type="text/javascript" src="js/pdfobject.min.js" ></script> <script type="text/javascript"> window.onload = function (){ var success = new PDFObject({ url: "pdf/JNI攻略之一――建立一个简单的JNI程序.pdf" , pdfOpenParams: { scrollbars: '0', toolbar: '0', statusbar: '0' }}).embed(); }; </script> </head > <body > </body> </html>
看看项目截图:
运行效果:
看了博客是相知,理解观点是朋友,赞同观点是同志.
如有疑问,请加qq群:135430763 共同学习!
项目源码已经上次到资源里面,点击下载:http://download.csdn.net/download/xmt1139057136/7795091
pdf在线阅读器
时间: 2024-10-26 04:48:18