捕获浏览器的前进后退事件 window.onhashchange 并区别于点击链接

Posted 捕蛇者说

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了捕获浏览器的前进后退事件 window.onhashchange 并区别于点击链接相关的知识,希望对你有一定的参考价值。

<html>   
    
    <head>   
        <meta http-equiv="content-type" content="text/html;charset=utf-8">   
        <title>onhashchange测试</title></head>   
    
    <body>
            <a href="#p2">p2</a>
    <script>
       document.onmouseover = function() {
            //User‘s mouse is inside the page.
            window.innerDocClick = true;
        }

        document.onmouseleave = function() {
            //User‘s mouse has left the page.
            window.innerDocClick = false;
        }

        window.onhashchange = function() {
            if (window.innerDocClick) {
                //Your own in-page mechanism triggered the hash change
                alert(‘You click a link‘);
            } else {
                //Browser back button was clicked
                alert(‘You click browser button‘);
            }
        }   </script>   
</html>

  

以上是关于捕获浏览器的前进后退事件 window.onhashchange 并区别于点击链接的主要内容,如果未能解决你的问题,请参考以下文章

监控浏览器的前进后退---window.onpopstate事件

移动端h5禁用浏览器左滑右滑的前进后退功能

浏览器“后退”“前进”或可以这么去监听

vue中通过history api拦截浏览器的前进后退按钮事件

监控页面后退前进,浏览器文档加载事件之pageshowpagehide

浏览器“后退”“前进”或可以这么去监听