如何获得当前日期或/和时间在秒

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

585339 次浏览

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

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

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

if(new Date().getTime() > timeout) {
alert("Session has expired");
}
var seconds = new Date().getTime() / 1000;

....能告诉你从1970年1月1日午夜开始的秒数吗

Reference .

要从Javascript epoch中获取秒数,请使用:

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

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

查看这里的引用:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now

(IE8不支持)

使用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也可以用于“floor"值转换为秒,但是该代码会导致以下问题:

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

从1970年1月1日开始,你还可以用秒/毫秒来表示时间:

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

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

更好的捷径:

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

// 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>

这些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.
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

与前面相同,只是使用了位运算符来计算天数的下限。

要获得今天的总秒数:

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

我已经在return中添加了+,它在int中返回。这可能对其他开发人员有所帮助。:)

在2020年的某一天,在Chrome 80.0.3987.132中,这将给出1584533105

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

我用这个:

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

不需要创建新对象(参见医生Date.now ())

如果你只是在THREE JS中需要几秒钟,使用下面的代码中的一个在函数uses window.requestAnimationFrame()

let sec = parseInt(Date.now().toString()[10]); console.log(' counting Seconds => '+ sec );

< p >或 let currentTime= Date.now(); < / p >

let secAsString= time.toString()[10];

let sec = parseInt(t);

console.log('counting Seconds =>'+ sec );

存在不需要初始化一个变量来包含Date对象是因为Date.now()是一个静态方法,这意味着它可以直接从API对象的构造函数访问。

你可以这样做

document.write(Date.now()) // milliseconds


document.write(Date.now()/1000) // seconds

一些有趣的事情

自1970年1月1日00:00:00 UTC开始的秒数实时更新

const element = document.getElementById('root')


setInterval(() => {
let seconds = Math.round(Date.now()/1000)
element.innerHTML = seconds
},1000)
Seconds since January 1, 1970 00:00:00 UTC
<h1 id='root'></h1>