以秒为单位获取当前日期/时间


Answers:


457
var seconds = new Date().getTime() / 1000;

....将为您提供自1970年1月1日午夜以来的秒数

参考


13
尽管这是正确的,但何时才有用呢?:)
尼克·克雷弗

6
@Nick-我认为所有示例都必须是推测性的,并且听起来会做作-但我会尝试一下:)假设您已将数据时间戳记为unix时间,并想确定其年龄。尽管我认为这更可能是“当前日期/时间(以秒为单位)”的含义;只是我的直觉。
sje397 2010年

3
我需要的一个应用程序是与PHP后端一起使用,因为time()函数已经返回了此值。时间戳也非常有用,因为您可以轻松地获得time()作为我们的当前时间与数据库中存储的上一次时间戳(例如用户发布内容)之间的时差。如果您希望获得一个格式化的时间,例如“ 2015年10月22日”,则可以制作自己的函数以从时间戳中返回该时间作为参数,或者在Stack中使用此函数。无论如何,希望能给您一些什么时候有用的见识。@NickCraver
uhfocuz

21
值得注意的是,您要将其包装在Math.floor()中,否则会得到一个小数。
David Webber

11
一种有用的方法是计算两次之间的时间。
扎克


65

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

const timestamp = new Date() / 1000; // 1405792936.933
// Technically, .933 would be milliseconds. 

更好的解决方案是:

// Rounds the value
const timestamp = Math.round(new Date() / 1000); // 1405792937

// - OR -

// Floors the value
const timestamp = new Date() / 1000 | 0; // 1405792936

对于条件语句,不带浮点数的值也更安全,因为浮点数可能会产生不需要的结果。使用浮点数获得的粒度可能超出了所需。

if (1405792936.993 < 1405792937) // true

1
完全同意👍使用Math.round(new Date() / 1000)
gdibble

37

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

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

然后在检查中,您正在检查:

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

16

要从Javascript时代获取秒数,请使用:

date = new Date();
milliseconds = date.getTime();
seconds = milliseconds / 1000;

9

// The Current Unix Timestamp
// 1443535752 seconds since Jan 01 1970. (UTC)

// Current time in seconds
console.log(Math.floor(new Date().valueOf() / 1000));  // 1443535752
console.log(Math.floor(Date.now() / 1000));            // 1443535752
console.log(Math.floor(new Date().getTime() / 1000));  // 1443535752
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

jQuery的

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


3

这些JavaScript解决方案为您提供自1970年1月1日午夜以来的毫秒数或秒数。

IE 9+解决方案(IE 8或更旧的版本不支持此功能。):

var timestampInMilliseconds = Date.now();
var timestampInSeconds = Date.now() / 1000; // A float value; not an integer.
    timestampInSeconds = Math.floor(Date.now() / 1000); // Floor it to get the seconds.
    timestampInSeconds = Date.now() / 1000 | 0; // Also you can do floor it like this.
    timestampInSeconds = Math.round(Date.now() / 1000); // Round it to get the seconds.

要获取有关Date.now()以下信息的更多信息:https : //developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now

通用解决方案:

// ‘+’ operator makes the operand numeric.
// And ‘new’ operator can be used without the arguments ‘(……)’.
var timestampInMilliseconds = +new Date;
var timestampInSeconds = +new Date / 1000; // A float value; not an intger.
    timestampInSeconds = Math.floor(+new Date / 1000); // Floor it to get the seconds.
    timestampInSeconds = +new Date / 1000 | 0; // Also you can do floor it like this.
    timestampInSeconds = Math.round(+new Date / 1000); // Round it to get the seconds.

如果您不想要这种情况,请小心使用。

if(1000000 < Math.round(1000000.2)) // false.

2
Date.now()-Math.floor(Date.now()/1000/60/60/24)*24*60*60*1000

这应该给您从一天开始起的毫秒数。

(Date.now()-Math.floor(Date.now()/1000/60/60/24)*24*60*60*1000)/1000

这应该给您几秒钟。

(Date.now()-(Date.now()/1000/60/60/24|0)*24*60*60*1000)/1000

除使用按位运算符限制天数外,其余与之前相同。


1

自1970年1月1日以来,您可以找到另一种以秒/毫秒为单位的时间获取方式:

var milliseconds = +new Date;        
var seconds = milliseconds / 1000;

但是使用这种方法时要小心,因为阅读和理解它可能很棘手。


我不知道,因为在使用语言时,副作用是一种更优雅的方式。
tomazahlin

1

更好的捷径:

+new Date # Milliseconds since Linux epoch
+new Date / 1000 # Seconds since Linux epoch
Math.round(+new Date / 1000) #Seconds without decimals since Linux epoch

0

在2020年的某一天,在Chrome 80.0.3987.132中, 1584533105

~~(new Date()/1000) // 1584533105
Number.isInteger(~~(new Date()/1000)) // true

-1

要获取当天的总秒数:

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

我有加+的回报,其中有回报int。这可能对其他开发人员有所帮助。:)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.