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