IE中的自动重定向无法正常工作

时间:2017-03-06 13:50:55

标签: javascript jquery jsp redirect timeout

我看过类似的帖子,但我没有得到解决方案。 我有一个网页,在X分钟后显示警告,如果X + Y = Z分钟,则重定向到logoff.jsp。它在Chrome / Firefox中运行良好。在重定向到logoff.jsp之前在IE中我收到提醒(留在此页/离开此页) Alert I'm reciveing

有没有办法,我可以重定向而不看这个警报框?

代码如下......

  

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');
     }

0 个答案:

没有答案