在我的应用程序中,我尝试为用户打印出一个凭证页面,如下所示:
var htm ="<div>Voucher Details</div>";
$('#divprint').html(htm);
window.setTimeout('window.print()',2000);
' divprint
' 是div
我的页面中的一个,用于存储有关凭证的信息。
它工作,并弹出打印页面。但是,一旦用户在浏览器的弹出打印对话框中单击“ print
”或“ ”,我想推进应用程序。close
例如,我想在弹出窗口关闭后将用户重定向到另一个页面:
window.application.directtoantherpage();//a function which direct user to other page
如何确定弹出打印窗口何时关闭或打印完成?