사용자가 사이트에 머무르면 조작이 없고, 일정 시간 후 자동으로 종료됩니다.

2835 단어
1. 일반 페이지
function checkUserFun(){
    var maxTime = 2*60*60; // seconds  (2 )
    var time = maxTime;
    $('body').on('keydown mousemove mousedown click scroll', function(e){
        time = maxTime; // reset
    });
    var intervalId = setInterval(function(){
        time--;
        if(time <= 0) {
            ShowInvalidLoginMessage();
            clearInterval(intervalId);
        }
    },1000)
    function ShowInvalidLoginMessage(){
     // alert(' , '); // } }

2. iframe이 포함된 페이지
var maxTime = 2*60*60; // seconds
var time = maxTime;
function checkUserFun(){
  $('body').on('keydown mousemove mousedown click scroll', function(e){
      time = maxTime; // reset
  });
  $($('#ifr')[0].contentWindow).on('click scroll keydown mousemove mousedown', function(e){
      time = maxTime; // reset
      load();
  });
  var intervalId = setInterval(function(){
      time--;
      if(time <= 0) {
          ShowInvalidLoginMessage();
          clearInterval(intervalId);
      }
  },1000)
  function ShowInvalidLoginMessage(){
    delCookie('username');
    location.href = 'login.html';
  }
}
function load(){
  $($('#ifr')[0].contentWindow).on('click scroll keydown mousemove mousedown', function(e){
    time = maxTime; // reset
  });
  time = maxTime; // reset
}

html
<iframe id="ifr" src="banner/bannerList.html" frameborder="0" width="100%" height="100%" onload = "load()">iframe>

 
다음으로 전송:https://www.cnblogs.com/SunShineM/p/7991957.html

좋은 웹페이지 즐겨찾기