在javascript中查找已用时间

时间:2015-07-14 12:00:51

标签: javascript

我是JavaScript的新手,我正在尝试编写一个代码,用于计算从用户登录到当前时间所经过的时间。

这是我的代码: -

function markPresent() {
    window.markDate = new Date();
    $(document).ready(function() {
        $("div.absent").toggleClass("present");
    });
    updateClock();
}

function updateClock() {    
    var markMinutes = markDate.getMinutes();
    var markSeconds = markDate.getSeconds();

    var currDate = new Date();
    var currMinutes = currDate.getMinutes();
    var currSeconds = currDate.getSeconds();
    var minutes = currMinutes - markMinutes;
    if(minutes < 0) { minutes += 60; }
    var seconds = currSeconds - markSeconds;
    if(seconds < 0) { seconds += 60; }

    if(minutes < 10) { minutes = "0" + minutes; }
    if(seconds < 10) { seconds = "0" + seconds; }

    var hours = 0;
    if(minutes == 59 && seconds == 59) { hours++; }
    if(hours < 10) { hours = "0" + hours; }

    var timeElapsed = hours+':'+minutes+':'+seconds;
    document.getElementById("timer").innerHTML = timeElapsed;
    setTimeout(function() {updateClock()}, 1000);
}

输出在00:59:59之前是正确的,但之后O / P是:

零时59分59秒 1时59分59秒 1点59分00秒 1时59分01秒 。 。 。 。 1时59分59秒 01:00:00

我如何解决这个问题,是否有更有效的方法可以做到这一点? 谢谢。

9 个答案:

答案 0 :(得分:13)

没有冒犯,但这大大超过了引擎。只需存储脚本首次运行时的开始时间,然后在每次计时器触发时从当前时间中减去该值。

有很多关于将ms转换为可读时间戳的教程,因此这里不需要介绍。

    var start = Date.now();
    
    setInterval(function() {
      document.getElementById('difference').innerHTML = Date.now() - start;
    
      // the difference will be in ms
    }, 1000);
<div id="difference"></div>

答案 1 :(得分:3)

这里发生了太多事情。

更简单的方法是每次将markDate与当前日期进行比较并重新格式化。

参见演示: http://jsfiddle.net/7e4psrzu/

function markPresent() {
    window.markDate = new Date();
    $(document).ready(function() {
        $("div.absent").toggleClass("present");
    });
    updateClock();
}

function updateClock() {  
    var currDate = new Date();
    var diff = currDate - markDate;
    document.getElementById("timer").innerHTML = format(diff/1000);
    setTimeout(function() {updateClock()}, 1000);
}

function format(seconds)
{
var numhours = parseInt(Math.floor(((seconds % 31536000) % 86400) / 3600),10);
var numminutes = parseInt(Math.floor((((seconds % 31536000) % 86400) % 3600) / 60),10);
var numseconds = parseInt((((seconds % 31536000) % 86400) % 3600) % 60,10);
    return ((numhours<10) ? "0" + numhours : numhours)
    + ":" + ((numminutes<10) ? "0" + numminutes : numminutes)
    + ":" + ((numseconds<10) ? "0" + numseconds : numseconds);
}

markPresent();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<div id="timer"></div>

答案 2 :(得分:2)

这是我为用例制作的解决方案。我发现它很可读。基本前提是简单地从当前时间戳中减去时间戳,然后将其除以正确的单位:

const showElapsedTime = (timestamp) => {
    if (typeof timestamp !== 'number') return 'NaN'        

    const SECOND = 1000
    const MINUTE = 1000 * 60
    const HOUR = 1000 * 60 * 60
    const DAY = 1000 * 60 * 60 * 24
    const MONTH = 1000 * 60 * 60 * 24 * 30
    const YEAR = 1000 * 60 * 60 * 24 * 30 * 12
    
    // const elapsed = ((new Date()).valueOf() - timestamp)
    const elapsed = 1541309742360 - timestamp
    
    if (elapsed <= MINUTE) return `${Math.round(elapsed / SECOND)}s`
    if (elapsed <= HOUR) return `${Math.round(elapsed / MINUTE)}m`
    if (elapsed <= DAY) return `${Math.round(elapsed / HOUR)}h`
    if (elapsed <= MONTH) return `${Math.round(elapsed / DAY)}d`
    if (elapsed <= YEAR) return `${Math.round(elapsed / MONTH)}mo`
    return `${Math.round(elapsed / YEAR)}y`
}
      
const createdAt = 1541301301000

console.log(showElapsedTime(createdAt + 5000000))
console.log(showElapsedTime(createdAt))
console.log(showElapsedTime(createdAt - 500000000))

例如,如果经过了3000毫秒,则3000大于SECONDS(1000)但小于MINUTES(60,000),因此此函数将3000除以1000并返回{{1} }持续了3秒钟。

如果您需要以秒而不是毫秒为单位的时间戳,请将3s的所有实例更改为1000(这将使所有内容乘以1000,从毫秒到秒(即:因为1000毫秒/ 1秒))。

以下是更干燥形式的换算单位:

1

答案 3 :(得分:2)

我们也可以将console.time()和console.timeEnd()方法用于同一件事。

语法:

console.time(label);
console.timeEnd(label);

标签: 赋予新计时器的名称。这将确定计时器;调用console.timeEnd()停止计时器并将时间输出到控制台时,请使用相同的名称。

let promise = new Promise((resolve, reject) => setTimeout(resolve, 400, 'resolved'));

// Start Timer
console.time('x');

promise.then((result) => {
  console.log(result);

  // End Timer
  console.timeEnd('x');
});

答案 4 :(得分:0)

var hours = 0;
if(minutes == 59 && seconds == 59) 
{ 
    hours = hours + 1; 
    minutes = '00'; 
    seconds == '00';
}

答案 5 :(得分:0)

我会使用getTime()方法,减去时间,然后将结果转换为hh:mm:ss.mmm格式。

答案 6 :(得分:0)

我知道这是一个很老的问题但是我想要自己解决方案以防万一有人想为此安装一个JS封装的插件。理想情况下我会:启动,暂停,恢复,停止,重置方法。提供以下代码可以很容易地添加。

(function(w){
  
  var timeStart,
      timeEnd,
      started = false,
      startTimer = function (){
        this.timeStart = new Date();
        this.started = true;
      },
      getPartial = function (end) {
        if (!this.started)
          return 0;
        else {
          if (end) this.started = false;
          this.timeEnd = new Date();
          return (this.timeEnd - this.timeStart) / 1000;
        }
      },
      stopTime = function () {
        if (!this.started)
          return 0;
        else {
          return this.getPartial(true);
        }
      },
      restartTimer = function(){
        this.timeStart = new Date(); 
      };
  w.Timer = {
    start : startTimer,
    getPartial : getPartial,
    stopTime : stopTime,
    restart : restartTimer
  };
})(this);
<a href="#" onclick="Timer.start()">Start</a>
<a href="#" onclick="Timer.getPartial()">Partial</a>
<a href="#" onclick="Timer.stopTime()">Stop</a>
<a href="#" onclick="Timer.restart()">Restart</a>

答案 7 :(得分:0)

我发现有用的是C ++构造的“端口”(尽管在C ++中,我经常被析构函数隐式调用show):

var trace = console.log
function elapsed(op) {
    this.op = op
    this.t0 = Date.now()
}
elapsed.prototype.show = function() {
    trace.apply(null, [this.op, 'msec', Date.now() - this.t0, ':'].concat(Array.from(arguments)))
}

要使用的-例如:

function debug_counters() {
    const e = new elapsed('debug_counters')
    const to_show = visibleProducts().length
    e.show('to_show', to_show)
}

答案 8 :(得分:0)

您可以简单地使用performance.now()

示例:

start = performance.now();

elapsedTime = performance.now() - start;