jQuery - 3 分钟(秒)

发布于 2024-12-03 22:55:03 字数 414 浏览 2 评论 0原文

我以为这很容易,但似乎我要么太短要么太长。

我试图让它在 3 分钟后让用户退出 这是我认为可行的倒计时我已经尝试过 3000、300、3*60、3*1000 等等

var timeout = 30*1800;

这是我正在尝试运行的函数,

    function loadidle(){

          var timeout = 180000;
          //alert(timeout);

          $(document).bind("idle.idleTimer", function(){

              logout();

          });


          $.idleTimer(timeout);
}

I thought this would be easy, but seems i either to way to short or way to long.

I am trying to make it sign the user out after 3minutes
this is the count down I thought would work I have tried 3000, 300, 3*60, 3*1000 and so on

var timeout = 30*1800;

This is the function I am trying to run,

    function loadidle(){

          var timeout = 180000;
          //alert(timeout);

          $(document).bind("idle.idleTimer", function(){

              logout();

          });


          $.idleTimer(timeout);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

む无字情书 2024-12-10 22:55:03

你只需要一个简单的计时器。有很多品种。这是一个非常便宜的示例,它将它很好地抽象为一个类。您可以通过调用 .reset()“继续”计时器。

function Timeout(seconds, callback){
    this.length = seconds * 1000;
    this.callback = callback;
    this.start();
}
Timeout.prototype = {
    start: function(){
        var self = this;
        this.stop();
        this.timer = setTimeout(function(){
            self.complete();
        },this.length);
    },
    stop: function(){
        if (this.timer) clearTimeout(this.timer);
        this.timer = null;
    },
    complete: function(){
        if (this.callback) this.callback();
        this.stop();
    },
    reset: function() {
        this.stop();
        this.start();
    }
}

启动一个新的计时器:

var timer = new Timeout(3 * 60, logout);
timer.reset(); // refresh the timer
timer.stop(); // cancel the timer

You just need a simple timer. There are many varieties. Here's a dirt cheap example that abstracts it nicely as a class. You can "continue" the timer by calling .reset().

function Timeout(seconds, callback){
    this.length = seconds * 1000;
    this.callback = callback;
    this.start();
}
Timeout.prototype = {
    start: function(){
        var self = this;
        this.stop();
        this.timer = setTimeout(function(){
            self.complete();
        },this.length);
    },
    stop: function(){
        if (this.timer) clearTimeout(this.timer);
        this.timer = null;
    },
    complete: function(){
        if (this.callback) this.callback();
        this.stop();
    },
    reset: function() {
        this.stop();
        this.start();
    }
}

Start a new timer:

var timer = new Timeout(3 * 60, logout);
timer.reset(); // refresh the timer
timer.stop(); // cancel the timer
巴黎夜雨 2024-12-10 22:55:03

很确定 JS(以及 jQuery)使用毫秒,所以你需要 3*60*1000。

Pretty sure JS (and therefore jQuery) use milliseconds, so you'll be wanting 3*60*1000.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文