Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 PHP 应用程序,其标准接口涉及数据网格。
当您单击该网格中的一行时,它会将您带到详细信息页面。
我想在该页面上有一个“打印”按钮,它将一组特定的信息打印到连接到客户端计算机的默认打印机上。
这可能来自PHP吗?我在网上找到了有关打印到连接到服务器的打印机的信息,但这并不是我真正想要的。我是否需要从 JavaScript 执行此操作?
使用 php 是不可能的。但是你可以在 Javascript 中做到这一点。
只需window.print()单击特定元素即可添加,这将打开一个打印对话框。
window.print()