使用javascript在acrobat reader中打印pdf文件并关闭它

发布于 2024-08-22 21:47:22 字数 98 浏览 6 评论 0原文

我们在 Acrobat Reader 中以 pdf 文档形式显示报告服务报告。当用户单击 acrobat reader 中的打印时,我想打印报告并关闭报告。用户应该只能打印一次报告。

we are displaying a reporting services report as a pdf document in acrobat reader. when the user clicks on the print in the acrobat reader, I will like to print the report and close the report. The user should be able to print the report only once.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最近可好 2024-08-29 21:47:22

我认为这是不可能的。您需要比浏览器所能提供的更多访问权限。也许 ActiveX 或浏览器插件可以提供帮助...

无论如何,浏览器对打印的支持有限。检查out

window.print();

我不是不过,确定它是否适用于所有浏览器。

I do not think that this is possible. You need much more access then browser can give. May be ActiveX or browser add-in can help...

Anyways, browsers have some limited support for printing. Check out:

window.print();

I am not sure if it works in all browsers, though.

飞烟轻若梦 2024-08-29 21:47:22

这是可能做到的。 即可

this.print();

您只需将“JavaScript PDF 操作”添加到文档的“打开”事件 。不幸的是,如果您的报告生成器在内部创建 PDF,您可能无法注入必要的代码。

This is possible to do. You simply need to add

this.print();

as a "JavaScript PDF action" to the "open" event of the document. Unfortunately, if your report generator is creating the PDFs internally you might not be able to inject the necessary code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文