我使用以下代码打印网页:
window.print();
我想在"打印"对话框关闭后执行一些命令。我怎样才能检测到它?
window.onload = PrintMe;
function PrintMe() {
window.print();
alert("Closed Printing");
}