我如何获得当前日期或/和时间在秒使用Javascript?


当前回答

使用new Date(). gettime() / 1000是获取秒的不完整解决方案,因为它会生成带有浮点单位的时间戳。

new Date() / 1000; // 1405792936.933

// Technically, .933 would be in milliseconds

而不是使用:

Math.round(Date.now() / 1000); // 1405792937

// Or
Math.floor(Date.now() / 1000); // 1405792936

// Or
Math.ceil(Date.now() / 1000); // 1405792937

// Note: In general, I recommend `Math.round()`,
//   but there are use cases where
//   `Math.floor()` and `Math.ceil()`
//   might be better suited.

此外,对于条件语句来说,没有浮动的值更安全,因为使用浮动获得的粒度可能会导致不想要的结果。例如:

if (1405792936.993 < 1405792937) // true

警告:位操作符用于操作时间戳时会导致问题。例如,(new Date() / 1000) | 0也可以用来将值“下压”为秒,但该代码会导致以下问题:

默认情况下,Javascript数字类型是64位(双精度)浮点数,位操作符隐式地将该类型转换为32位有符号整数。可以说,类型不应该由编译器隐式转换,而应该由开发人员在需要的地方进行转换。 按位运算符产生的有符号32位整型时间戳会导致注释中提到的2038年问题。

其他回答

一种简单快速的方法,不需要创建日期对象并给出一个整数作为结果(如果发送小数,接受秒的api将会出错)

var nowincos = ~~(日期。 游戏机。log (nowInSeconds);

根据你的评论,我认为你在寻找这样的东西:

var timeout = new Date().getTime() + 15*60*1000; //add 15 minutes;

然后在你的检查中,你在检查:

if(new Date().getTime() > timeout) {
  alert("Session has expired");
}

要获得今天的总秒数:

getTodaysTotalSeconds(){
    let date = new Date();        
    return +(date.getHours() * 60 * 60) + (date.getMinutes() * 60) + date.getSeconds();
}

我在return中使用了add +它在int中返回。这可能对其他开发人员有所帮助。:)

//当前Unix时间戳 // 1443535752秒自1970年1月1日。(UTC) //当前时间,单位为秒 console.log(数学。floor(new Date().valueOf() / 1000));/ / 1443535752 console.log(Math.floor(Date.now() / 1000));/ / 1443535752 console.log(数学。floor(new Date().getTime() / 1000));/ / 1443535752 < script src = " https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js " > < /脚本>

jQuery

console.log(Math.floor($.now() / 1000));/ / 1443535752 < script src = " https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js " > < /脚本>

 Date.now()

给出从epoch开始的毫秒数。不需要使用new。

在这里查看参考资料:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now

(IE8不支持)