如何在window.location重新加载页面后激活onbeforeunload?

时间:2017-12-15 21:05:01

标签: javascript jquery onbeforeunload

我在项目中使用onbeforeunload。但是,有一个部分,用户可以单击该链接并下载报告。在window.location被触发之前,我设置window.onbeforeunload = null,这样用户就不会收到警告/确认框以留下或留下问题。如果他们在尝试关闭浏览器时单击报告并下载文件,则会出现问题onbeforeunload未再次触发。下载报告后如何触发onbeforeunload?以下是我的功能示例:

function getReport(){
    var fileName = $(this).prop('id'),
    param = 'rptFile=' + fileName;  

    try{
        window.onbeforeunload = null;
        window.location = '/'+pathname+'/APPS/entry.cfm?idx=5&' + param;
    }catch(err){
        alert("An error occurred retrieving the file.");
    }
};

我正在重新加载entry.cfm的主页面有document.ready函数,我有onbeforeunload函数。我预计一旦使用window.location下载报告,然后onbeforeunload将再次触发。所以我不确定我做错了什么,或者JS不可能做到这一点。这是entry.cfm示例:

$(document).ready(function() {
    window.onbeforeunload = function () {
        return 'Are you sure you want to leave?';
    }
});

如果有人知道如何再次触发onb​​eforeunload,请告诉我。谢谢!

1 个答案:

答案 0 :(得分:1)

这样可行,null window.onbeforeunload只需将window.location替换为window.open即可在新标签中打开报告。

function getReport() {
  try {
    window.open('https://via.placeholder.com/350x150/ee5533', '_blank');
  } catch (err) {
    alert("An error occurred retrieving the file.");
  }
};


window.onbeforeunload = function() {
  return 'Are you sure you want to leave?';
}

$('.dwl').on('click', getReport );
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<a class="dwl">Try to download in new tab</a>