如何在Javascript中以秒为单位获取当前日期/时间?
答案 0 :(得分:411)
答案 1 :(得分:94)
Date.now()
给出了自纪元以来的毫秒数。无需使用new
。
点击此处的参考资料:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now
(在IE8中不支持。)
答案 2 :(得分:51)
使用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
没有浮点数的值对条件语句也更安全,因为浮点数可能会产生不需要的结果。使用float获得的粒度可能超过需要。
if (1405792936.993 < 1405792937) // true
答案 3 :(得分:37)
根据您的评论,我认为您正在寻找类似的内容:
var timeout = new Date().getTime() + 15*60*1000; //add 15 minutes;
然后在你的支票中,你正在检查:
if(new Date().getTime() > timeout) {
alert("Session has expired");
}
答案 4 :(得分:16)
要获取Javascript纪元使用的秒数:
date = new Date();
milliseconds = date.getTime();
seconds = milliseconds / 1000;
答案 5 :(得分:7)
// 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>
答案 6 :(得分:5)
答案 7 :(得分: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.
答案 8 :(得分:1)
自1970年1月1日以来,您可以通过另一种方式获得以秒/毫秒为单位的时间:
var milliseconds = +new Date;
var seconds = milliseconds / 1000;
但要小心这种方法,因为阅读和理解它可能会很棘手。
答案 9 :(得分: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
答案 10 :(得分:1)
在2020年的某天,在Chrome 80.0.3987.132中,这将得到1584533105
~~(new Date()/1000) // 1584533105
Number.isInteger(~~(new Date()/1000)) // true
答案 11 :(得分:0)
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
这应该给你几秒钟。
答案 12 :(得分:-1)
要获取当天的总秒数:
getTodaysTotalSeconds(){
let date = new Date();
return +(date.getHours() * 60 * 60) + (date.getMinutes() * 60);
}
我已经添加了+
作为回报,而返回的是int
。这可能对其他开发人员有所帮助。 :)