内容目录
setUTCMilliseconds()
函数用于基于UTC时间设置当前Date对象的毫秒值。也就是"年月日 时分秒 毫秒"中"毫秒"的数值。
该函数属于Date对象,所有主流浏览器均支持该函数。
语法
date.setUTCMilliseconds( milliseconds )
参数
参数 | 描述 |
---|---|
milliseconds | Number类型指定的毫秒值。 |
参数milliseconds
可以超出常规的0 ~ 999的取值范围,也可以为负数,Date
对象内部会自动计算并转换为对应的时间。
返回值
setUTCMilliseconds()
函数没有返回值(或者说,返回值为undefined
)。
示例&说明
// 当前运行环境的时区为 UTC +8
//定义一个本地时间的Date对象"2012-03-15 13:11:43 123"
var date = new Date(2012, 2, 15, 13, 11, 43, 123);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2012年3月15日 13:11:43 123
date.setUTCMilliseconds(23);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2012年3月15日 13:11:43 23
date.setUTCMilliseconds(3600000);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2012年3月15日 14:11:43 0
date.setUTCMilliseconds(-1001);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2012年3月15日 14:11:41 999
0 条评论
撰写评论