Auto-closing a popup with a file to download

后端 未结 4 1706
误落风尘
误落风尘 2021-02-06 16:16

I have a file, named download.php, which contains a file to be downloaded, so it has the following headers (declared with PHP):

header(\"Content-Typ         


        
相关标签:
4条回答
  • 2021-02-06 16:18

    I have used Onblure but it didn't help at all!

    I used below code and it is working for me.

    var popupWindow = window.open("endpoint","","setting");
    var att = document.createAttribute("onblure");  // Create a "onblure" attribute
    att.value = "window.close()";                  // Set the value of the class attribute
    popupWindow.setAttributeNode(att); 
    

    This will allow closing the window when download window appears

    Note: endpoint: is your new window endpoint setting: is your window setting for example width, height,top, left .. etc

    0 讨论(0)
  • 2021-02-06 16:20

    Can I ask what it says in the browser url bar in this opened window. It might be the case that the browser see's the headers letting the browser know it is to be treated as a download and doesn't run the window as a true page. and instead opens something like 'about:blank'. If that's the case the on the page javascript would never get run.

    I can suggest the following however. I'm assuming this window is being opened by another page. In that case have the other page open the window programatically through javascript and control the close from there.

    var popout = window.open("http://example.com/download.php");
    window.setTimeout(function(){
        popout.close();
    }, 1000);
    
    0 讨论(0)
  • 2021-02-06 16:24

    You may use the following snippet to close the current window (credits to this SO answer) :

    window.open(window.location, '_self').close();
    

    To run this after a given interval, simply use setTimeout

    setTimeout(function() { window.open(window.location, '_self').close(); }, 3000);
    
    0 讨论(0)
  • 2021-02-06 16:35

    I have a somewhat different proposal, which worked fine in my case and does not have an arbitrary timeout:

    var newwindow = window.open("http://example.com/download.php");
    newwindow.focus();
    newwindow.onblur = function() {newwindow.close(); };
    

    When finishing the download the new window will eventually unfocus and close.

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