我网站的访问者可以单击“打印预览”按钮。Javascript 代码打开一个窗口并使用 document.writelin() 将创建一个显示动态内容的 html 页面(基本上,用户正在查看报告。这是向您展示我的意思的代码片段:
printerWindow = window.open("");
printerWindow.document.writeln("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>");
printerWindow.document.writeln("<html>");
printerWindow.document.writeln("<head>");
printerWindow.document.writeln("<title>Report Title</title>");
printerWindow.document.writeln("<link href='./css/schedule_print_preview.css' type='text/css' rel='stylesheet'>");
printerWindow.document.writeln("<link href='./css/schedule_printer.css' rel='stylesheet' type='text/css' media='print'>");
printerWindow.document.writeln("<script type='text/javascript'>");
printerWindow.document.writeln("function printcalc() {");
printerWindow.document.writeln("window.print();");
printerWindow.document.writeln("};");
printerWindow.document.writeln("<\/script>");
printerWindow.document.writeln("</head>");
printerWindow.document.writeln("<body>");
printerWindow.document.writeln("<div class='btns'>");
{...}
我想在此页面上包含一个“下载 PDF”链接,以便访问者可以将报告保存为 PDF。
ABCpdf 8.1可以做到这一点吗?(我正在评估它。)我遇到的问题是找出最接近我需要做的例子。有什么建议么?TIA。