搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Firefox not redirecting when using window.print() script

  • 2 个回答
  • 1 人有此问题
  • 91 次查看
  • 最后回复者为 pcdebol

more options

Have a simple java script on a webpage to bring up the print dialog before redirecting to another page.

<a onclick="javascript:window.print()" href="Screen.php">Print and continue</a>

When the printer dialog comes up if you print it does not redirect but stays on the page. If you cancel the print job it will go ahead and redirect to where it's supposed to go. Worked fine before the latest update was wondering if there was a workaround for this or if anyone was aware of this.

Have a simple java script on a webpage to bring up the print dialog before redirecting to another page. <a onclick="javascript:window.print()" href="Screen.php">Print and continue</a> When the printer dialog comes up if you print it does not redirect but stays on the page. If you cancel the print job it will go ahead and redirect to where it's supposed to go. Worked fine before the latest update was wondering if there was a workaround for this or if anyone was aware of this.

被采纳的解决方案

The inconsistency is puzzling. If you change your onclick to the following code, you can see a timing difference in the appearance of the confirm dialog that might be associated with the problem. Maybe printing went from synchronous to asynchronous and now the navigation is attempted at a time when it is not permitted?

onclick="window.print(); if(!confirm('Finished printing?')) return false;"

定位到答案原位置 👍 0

所有回复 (2)

more options

选择的解决方案

The inconsistency is puzzling. If you change your onclick to the following code, you can see a timing difference in the appearance of the confirm dialog that might be associated with the problem. Maybe printing went from synchronous to asynchronous and now the navigation is attempted at a time when it is not permitted?

onclick="window.print(); if(!confirm('Finished printing?')) return false;"

more options

Thank you that helps. Not perfect but will make it easier for the people using the program. It's an internal program and they use that print redirect about a hundred times a day.