php 或 javascript 自动打印
我希望我的应用程序直接打印到默认打印机,而不出现 Windows 选择打印机对话框 我真的不需要显示屏幕。用户想要的只是打印输出、收据。
I want my application to print directly to the default printer without the Windows select printer dialog coming up and
I really dont need to display the screen. All the user wants is a printout, receipt.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不,你不能这样做。
您只能使用 javascript 执行
window.print()
并显示窗口。为什么不能:因为安全。
No, you cannot do it.
You can only do
window.print()
with javascript and it displays the window.Why you cannot: because safety.
不,恐怕这是不可能的。您可以同时运行数百万个打印任务,这对用户来说并不好
No I'm afraid this is not possible. You could just run millions of print tasks at the time, and it wouldn't be good for user
是的,你可以。在 Firefox about:config 中,您可以将属性 print.always_print_silent 设置为 true。然后 Firefox 将在没有提示的情况下进行打印。
使用“JS Print setup”,您可以直接从 javascript 调整一些打印机参数
yes, you can. In Firefox about:config you can make property print.always_print_silent equal to true.Then Firefox will print without prompt.
And using "JS Print setup" you can adjust some printer parameters directly from javascript
简短的回答:你不能用 JavaScript 做到这一点。
Short answer: you can't do that with JavaScript.