内容目录
getUTCSeconds()
函数用于使用UTC时间返回当前Date对象中的秒值。也就是"年月日 时分秒"中"秒"的数值。
例如:2013年7月15日 15:23:56(基于UTC时间),就返回56。
该函数属于Date对象,所有主流浏览器均支持该函数。
语法
date.getUTCSeconds( )
返回值
getUTCSeconds()
函数的返回值为Number类型,返回当前Date对象基于UTC时间的秒值。该值介于 [0, 59] 之间。
示例&说明
// 定义一个当前时间的Date对象(2014-08-07 16:23:24)
var date = new Date();
document.writeln( date.getUTCSeconds() ); // 24
// 定义一个"2003-06-30 12:11:59 230"的Date对象
var date2 = new Date(2003, 5, 30, 12, 11, 59, 230);
document.writeln( date2.getUTCSeconds() ); // 59
// 定义一个"2009-01-18"的Date对象
var date3 = new Date(2009, 0, 18);
document.writeln( date3.getUTCSeconds() ); // 0
0 条评论
撰写评论