jQuery 点击后退(返回)执行函数

Posted `早先少年时

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 点击后退(返回)执行函数相关的知识,希望对你有一定的参考价值。

<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>点击后退</title>
    <script type="text/javascript" src="http://code.jquery.com/jquery-3.3.1.js"></script>
    <script>
        jQuery(document).ready(function ($) {
            if (window.history && window.history.pushState) {
                $(window).on(popstate, function () {
                    var hashLocation = location.hash;
                    var hashSplit = hashLocation.split("#!/");
                    var hashName = hashSplit[1];
                    if (hashName !== ‘‘) {
                        var hash = window.location.hash;
                        if (hash === ‘‘) {
                            alert("希望该网站能提供你帮助!");
                        }
                    }
                });
                window.history.pushState(forward, null, ./#forward);
            }
        });
    </script>
</head>
<body>
<h3>阅谁问君诵,水落清香浮。</h3>

</body>
</html>

 

以上是关于jQuery 点击后退(返回)执行函数的主要内容,如果未能解决你的问题,请参考以下文章

使用导航控制器按下后退按钮后,如何防止先前的片段出现?

如果在 WebView 片段中按下后退按钮,如何返回上一页?

5秒后Android返回过渡不起作用

如何在按下单个片段的手动后退按钮时返回上一个片段?

HTML代码片段

HTML代码片段