码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-10-16 11:57:10      阅读:454      评论:0      收藏:0      [点我收藏+]

标签:src   device   后退   jquer   pop   jquery   imu   location   spl   

<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 点击后退(返回)执行函数

标签:src   device   后退   jquer   pop   jquery   imu   location   spl   

原文地址:https://www.cnblogs.com/mz0104/p/9796859.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!