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