在 JavaScript 中如何获取当天的秒数?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/11447067/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-26 13:15:37  来源:igfitidea点击:

In JavaScript how to get second of current day?

javascripttimeseconds

提问by Kirill Titov

So the question is described in title. I need to get current second of the day using JavaScript.

所以问题在标题中描述。我需要使用 JavaScript 获取当天的当前秒数。

回答by T.J. Crowder

You add up the bits:

你把这些位加起来:

var dt = new Date();
var secs = dt.getSeconds() + (60 * dt.getMinutes()) + (60 * 60 * dt.getHours());

or if you prefer

或者如果你喜欢

var dt = new Date();
var secs = dt.getSeconds() + (60 * (dt.getMinutes() + (60 * dt.getHours())));

回答by fedosov

For example (in action):

例如(在行动中):

?var today = new Date(), today_abs = new Date(), today_secs = 0;
today_abs.setHours(0);
today_abs.setMinutes(0);
today_abs.setSeconds(0);
today_secs = (today.getTime() - today_abs.getTime()) / 1000;?