内容目录
getUTCMilliseconds()
函数用于使用UTC时间返回当前Date对象中的毫秒值。也就是"年月日 时分秒 毫秒"中"毫秒"部分的数值。
该函数属于Date对象,所有主流浏览器均支持该函数。
语法
date.getUTCMilliseconds( )
返回值
getUTCMilliseconds()
函数的返回值为Number类型,返回当前Date对象基于UTC时间的日期值。该值介于 [0, 999] 之间。
示例&说明
// 当前运行环境的时区为 UTC+8
// 定义一个当前时间的Date对象(2014-08-07 16:14:32 906)
var date = new Date();
document.writeln( date.getUTCMilliseconds() ); // 906
// 定义一个"2001-06-30 12:11:59 230"的Date对象
var date2 = new Date(2001, 5, 30, 12, 11, 59, 230);
document.writeln( date2.getUTCMilliseconds() ); // 230
// 定义一个"2008-08-08"的Date对象
var date3 = new Date(2008, 7, 8);
// 此时UTC时间为"2008-08-07 16:00:00 000"
document.writeln( date3.getUTCMilliseconds() ); // 0
0 条评论
撰写评论