jquerymobile会话超时,有2个定时器

时间:2012-07-13 16:09:50

标签: javascript jquery-mobile timeout

编辑:我发现问题在于使用live而不是on。我修好了,然而,不能让第二个计时器开火..

错误:Object [object Object] has no method "popup"

我正在尝试使用jquery mobile实现客户端会话超时。我的代码位于:http://jsfiddle.net/83BSW/5

欣赏任何见解..

以下是为方便起见的代码:

<!DOCTYPE html>
<html> 
<head> 
    <title>My Page</title> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>


<!-- Application specific -->

<script> 
var first_timer = 2 * 1000;
var second_timer = 3 * 1000;
var down = -1;

function initTimer() {
  down = setTimeout(processTimeout, first_timer)
}

function processTimeout() {
        down = setTimeout(logout, second_timer);
        $.mobile.changePage('#timeout1',{transition:'slide', role:'dialog'});
        //alert ("Timeout of first timer, timerid:" + down );
}

function logout() {
    $("#timeout").popup('close');
  $.mobile.changePage('#timeout2',{transition:'slide', role:'dialog'});
  alert("You are logged out");
//  window.location = "http://www.google.com"
}

function resetMyTimer() {
  if ( -1 != down )
    clearTimeout(down);
  alert("Restarting timer");
  initTimer();
}

$("#loadingpage").on(function() {
    resetMyTimer();
});

initTimer();

</script>

</head>
<body>
<div data-role="page" id="loadingpage">
  <div data-role="header" data-position="fixed"> 
      <div class="headerlogo"> </div>
      <h1> Test </h1>
  </div> 
  <div data-role="content" >
    <div id="ssagov"> 
    <h1> Hi there </h1>
    </div> 
    <input type="button" data-shadow="false" data-corners="false" value="Next"  />
  </div><!-- /content --> 
</div><!-- /launch page -->
<div data-role="page" id="timeout1" data-role="popup">
  <div data-role="header" data-backbtn="false">
    <h1>Timeout1</h1>
  </div>
  <div data-role="content">
    Your session will timeout in 2 mins.
  </div>
</div>
<div data-role="page" id="timeout2" data-role="popup">
  <div data-role="header" data-backbtn="false">
    <h1>Timeout2</h1>
  </div>
  <div data-role="content">
    Your session has timed out
  </div>
</div>

</body>
</html>​

1 个答案:

答案 0 :(得分:1)

最后我修复了问题,而不是弹出窗口,我应该使用对话框。以下是工作版本:http://jsfiddle.net/83BSW/6