[removed] and [removed] get fired at the same time

前端 未结 3 1699
挽巷
挽巷 2021-01-05 09:51

I have defined onbeforeprint and I modify my html code and now once I finish printing that is on select of print button I want the onafterprint to

相关标签:
3条回答
  • 2021-01-05 10:00

    I ran into this same issue trying to use the onafterprint event, even in modern browsers.

    Based on one of the other answers here, I was able to come up with this solution. It let's me close the window after the print dialog is closed:

    // When the new window opens, immediately launch a print command,
    // then queue up a window close action that will hang while the print dialog is still open.
    // So far works in every browser tested(2020-09-22): IE/Chrome/Edge/Firefox
    window.print();
    setTimeout(function () {
        window.close(); // Replace this line with your own 'afterprint' logic.
    }, 2000);
    
    0 讨论(0)
  • 2021-01-05 10:01

    Yes, you can, no catch. I have thus implemented in a professional application. Print in Explorer, Firefox, all

    window.onload = PrintMe;
    
    function PrintMe() {
        window.print();
        setTimeout(function () {
        alert("OK");
    // Here you code, for example  __doPostBack('ReturnPrint', '');
        }, 2000);
    }
    
    0 讨论(0)
  • 2021-01-05 10:17

    onbeforeprint fired before dialog appears and allows one to change html and so on.

    onafterprint is fired just before dialog appears. It is not even possible to know, whether document was actually printed or user canceled it. Needless to say about when printing finished (if started at all).

    Again: no event is available to track anything happened in print dialog, i.e. answer to your question is no.

    Moreover, I hope what your need will never be implemented, cause this allows to frustrate user. He/she asks to print one document, but got something different.

    0 讨论(0)
提交回复
热议问题