location.href does not work in chrome when called

2019-07-20 03:01发布

Javascript - document.location or window.location or window.location.href or location.href does not work in Google Chrome 6 and 7(i didnt test lowers versions) when called from the window/body unload event. Both the ways seems to work fine with IE, Firefox and Safari browsers.

Through more testing i was able to see that this redirect actually works in chrome when done through a click event or any other. However when this is called in the body unload event. it does not work.

Sample Code:

<html>
    <script type="text/javascript">
        function check()
        {
            location.href="http://www.google.com";
        }
    </script>

    <body onunload="check()">

        <input type="button" onclick="check();" value="check">

    </body>
</html>

I am still trying to find a way to have this working in Chrome... Any help would be greatly appreciated.

Thanks, Nived

1条回答
不美不萌又怎样
2楼-- · 2019-07-20 03:22

try this out

setTimeout(function(){
    document.location.href = "page.html;"},500);
查看更多
登录 后发表回答