唐伯虎 发表于 2021-7-29 21:30:02

jQuery判断当前页面是否被浏览


<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>jQuery判断当前页面是否被浏览</title>
</head>

<body>
    <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
    <script>
    $(document).on('visibilitychange', function(e) {
      if (e.target.visibilityState === "visible") {
            document.title = '被发现啦!';
      } else if (e.target.visibilityState === "hidden") {
            document.title = '藏好啦!';
      }
    });
    </script>
</body>

</html>

文档来源:51CTO技术博客https://blog.51cto.com/u_15315190/3202265
页: [1]
查看完整版本: jQuery判断当前页面是否被浏览