我看过类似的帖子,但我没有得到解决方案。 我有一个网页,在X分钟后显示警告,如果X + Y = Z分钟,则重定向到logoff.jsp。它在Chrome / Firefox中运行良好。在重定向到logoff.jsp之前在IE中我收到提醒(留在此页/离开此页)
有没有办法,我可以重定向而不看这个警报框?
代码如下......
timeOut.js
function checkpop() {
x++;
if(x==25){
var modal = document.getElementById('myModal');
modal.style.display = "none";
$("iframe").contents().find('#chat').prop('disabled', true);
//window.location.replace = "logoff.jsp";
$(location).attr('href', 'http://google.com');
}