根据文档(我仅使用 Firefox ):

https://developer.mozilla.org/en/DOM/window.onunload



但是,即使子窗口(即变量名“win”)刚刚被打开而不是关闭,我下面的代码仍会触发警报。

alert("failed but still reload:" + win.isSuccess);

"failed but still reload: undefined"

我的注意力是在关闭子窗口时调用onunload。我在这里做错什么了?

代码
function showInsertPopup() {
    var ddId = document.getElementById("workRegionDropdown");
    var index = ddId.selectedIndex;
    var workRegionCode = ddId.options[index].value;
    if(workRegionCode != "") {
          var win = window.open(machineFormPopup + "?typeFlag=1&workRegionCode=" + workRegionCode, "window1", "menubar=no, width=700, height=550, toolbar=no");
          win.onunload = function() {
                if(win.isSuccess) {
                      alert("success reload!")
                      getRecordByWorkRegion();
                }
                else {
                      //here gets print out somehow
                      alert("failed but still reload:" + win.isSuccess);
                      getRecordByWorkRegion();
                }
          }//end inner function onunload
     }
 }//end showInsertPopup()

子窗口页面只有简单的js:
window.isSuccess = 1;
window.close();

最佳答案

实际上,您首先会在弹出窗口中看到原始about:blank文档的卸载。 (您可以通过查看窗口的位置来验证这一点。)然后,当弹出窗口关闭时,您应该会看到另一个卸载。

09-20 11:22