如何检查用户是否正在查看当前标签/窗口?

时间:2013-03-05 20:26:42

标签: javascript jquery html

这是我唯一能想到的:

$(document).ready(function () {
  $([window, document]).focusin(function(){
    alert('hi');
  }).focusout(function(){
    alert('see you');
  });

但它不起作用。它应该在不查看页面时显示警报,在查看页面时显示另一个警报。当然这不是我的最终应用,但它应该以这种方式工作。有什么建议吗?

jQuery已加载,$(document).ready()内的其他操作正在运行,未显示错误...

0 个答案:

没有答案