如何检测浏览器/选项卡已关闭

时间:2013-04-01 07:30:20

标签: php javascript jquery codeigniter

我希望在浏览器关闭或浏览器标签关闭时提示框。我有一些代码,但在这1个额外的消息即将到来..我想知道它来自警报框的位置。如果您有任何其他代码,然后发送给我或告诉我该怎么办..实际上我想避免第二次用户登录(为此我创建1会话ID并保存在DB之后每次用户登录时检查会话ID是如果然后用户可以登录,如果用户可以登录,当用户注销会话ID也被删除但浏览器或选项卡关闭时会话ID不会被删除。为此我想要检测到那个之后我想将控件发送到ajax控制器)这就是为什么我想知道哪一条额外消息即将到来。请解决我的问题..

<script type="text/javascript" >
var validNavigation = false;

function wireUpEvents() {

  var dont_confirm_leave = 0; //set dont_confirm_leave to 1 when you want the user to be able to leave withou confirmation
  var leave_message = 'You sure you want to leave?'
  function goodbye(e) {
    if (!validNavigation) {
      if (dont_confirm_leave!==1) {
        if(!e) e = window.event;
        //e.cancelBubble is supported by IE - this will kill the bubbling process.
        e.cancelBubble = true;
        e.returnValue = leave_message;
        //e.stopPropagation works in Firefox.
        if (e.stopPropagation) {
          e.stopPropagation();
          e.preventDefault();
        }
        //return works for Chrome and Safari
        return leave_message;
      }
    }
  }
  window.onbeforeunload=goodbye;

  // Attach the event keypress to exclude the F5 refresh
  $('document').bind('keypress', function(e) {
    if (e.keyCode == 116){
      validNavigation = true;
    }
  });

  // Attach the event click for all links in the page
  $("a").bind("click", function() {

    validNavigation = true;
  });

  // Attach the event submit for all forms in the page
  $("form").bind("submit", function() {
    validNavigation = true;
  });

  // Attach the event click for all inputs in the page
  $("input[type=submit]").bind("click", function() {
    validNavigation = true;
  });

}

// Wire up the events as soon as the DOM tree is ready
$(document).ready(function() {
  wireUpEvents();
}); 
</script>

1 个答案:

答案 0 :(得分:0)

您无法使用javascript代码来限制用户,如果用户在浏览器设置中停用了javascript,该怎么办。

我认为你应该使用PHP和数据库(mysql)来处理它

当用户注册/登录时,在数据库的login_session表中插入一个带有时间和日期的新条目, 在登录之前检查条目是否存在以及是否存在其上次登录时间过去的时间, 如果上次登录超过5分钟或您认为适合您的任何时间,请更新条目并创建新会话。

在这里查看类似的帖子 PHP /SESSION: Login one per user?