How to I redirect to another page *after* printing document?

前端 未结 5 1632
悲&欢浪女
悲&欢浪女 2020-12-17 06:31

I have an event called SubmitResponse().

A user is presented with a list of questions and possible responses. After completing the responses, the user

5条回答
  •  旧巷少年郎
    2020-12-17 07:29

    you can use this code :

    window.print();
    window.onafterprint = function(event) {
        window.location.href = 'index.php'
    };
    

    using window.print() callBack!!

提交回复
热议问题