如何从日期对象中获取这个 hh:mm:ss?
var d = new Date(); // for now
datetext = d.getHours()+":"+d.getMinutes()+":"+d.getSeconds();
我有时会在下面得到这个结果,
12:10:1
应该是
12:10:01
我认为这也发生在小时和分钟上。
所以我在这之后
01:01:01
不是这个 1:1:1
如何从日期对象中获取这个 hh:mm:ss?
var d = new Date(); // for now
datetext = d.getHours()+":"+d.getMinutes()+":"+d.getSeconds();
我有时会在下面得到这个结果,
12:10:1
应该是
12:10:01
我认为这也发生在小时和分钟上。
所以我在这之后
01:01:01
不是这个 1:1:1
解决方案 - (tl;博士版)
datetext = d.toTimeString().split(' ')[0]
解释:
toTimeString
返回完整时间。我们将其按空间分割以仅获取时间分量,然后取第一个有用的值。:)
完整流程:
d = new Date();
// d is "Sun Oct 13 2013 20:32:01 GMT+0530 (India Standard Time)"
datetext = d.toTimeString();
// datestring is "20:32:01 GMT+0530 (India Standard Time)"
// Split with ' ' and we get: ["20:32:01", "GMT+0530", "(India", "Standard", "Time)"]
// Take the first value from array :)
datetext = datetext.split(' ')[0];
注意:这不需要您包含任何外部文件或库,因此执行所需的时间会更快。
您可以使用此代码段。我还将它添加到jsfiddle
并添加了类型安全的注释,因此请务必查看小提琴。
如果您使用的是 jQuery,请在您的 ready 函数中调用它。否则,您可以使用纯 JavaScript 来更新字段的值。
$(document).ready(function(){
var d = new Date();
var formatted_time = time_format(d);
$('#yourTimeField').text(formatted_time);
});
将这两种方法添加到您的脚本中(您也可以将其粘贴到单个文件中,就像在jsfiddle代码片段中一样):
function time_format(d) {
hours = format_two_digits(d.getHours());
minutes = format_two_digits(d.getMinutes());
seconds = format_two_digits(d.getSeconds());
return hours + ":" + minutes + ":" + seconds;
}
function format_two_digits(n) {
return n < 10 ? '0' + n : n;
}
就是这样:)希望它有帮助:)
您也可以尝试使用http://momentjs.com/。用于解析、验证、操作和格式化日期的 javascript 日期库。