内容目录
setUTCMinutes()
函数用于基于UTC时间设置当前Date对象中的分钟值。也就是"年月日 时分秒"中"分"的数值。setUTCMinutes()
函数还可同时设置秒值和毫秒值。
该函数属于Date对象,所有主流浏览器均支持该函数。
语法
date.setUTCMinutes( minutes[, seconds[, milliseconds ]] )
参数
参数 | 描述 |
---|---|
minutes | Number类型指定的分钟值。 |
seconds | 可选/Number类型指定的秒值。 |
milliseconds | 可选/Number类型指定的毫秒值。 |
setUTCMinutes()
函数的所有参数都可以超出常规取值范围。例如:参数minutes
可以超出常规的0 ~ 59的取值范围,并且可以为负数。Date
对象内部会自动计算并转换为相应的日期。
如果提供了指定的可选参数,就必须同时提供位于该参数之前的所有可选参数。
返回值
setUTCMinutes()
函数没有返回值(或者说,返回值为undefined
)。
示例&说明
// 当前运行环境的时区为 UTC +8
//定义一个本地时间的Date对象"2012-06-17 13:11:43"
var date = new Date(2012, 5, 17, 13, 11, 43);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2012年6月17日 13:11:43 0
date.setUTCMinutes(23);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2012年6月17日 13:23:43 0
date.setUTCMinutes(-15, 0);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2012年6月17日 12:45:00 0
date.setUTCMinutes(600, 0, 1);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2012年6月17日 22:00:00 1
0 条评论
撰写评论