内容目录
setTime()
函数用于设置当前Date对象中的日期和时间值。该函数通过指定时间距1970年1月1日午夜的毫秒数,来设置当前Date对象表示该时间。
该函数属于Date对象,所有主流浏览器均支持该函数。
语法
date.setTime( milliseconds )
参数
参数 | 描述 |
---|---|
milliseconds | Number类型指定的毫秒值,该值表示自UTC 1970年1月1日午夜之后经过的毫秒数。 |
参数milliseconds
可以为负值,用于表示1970年以前的日期。
使用setTime()
函数对日期和时间所进行的设置与时区无关。
返回值
setTime()
函数没有返回值(或者说,返回值为undefined
)。
示例&说明
// 定义一个当前时间的Date对象
var date = new Date();
// 一年的毫秒数
var time = 1000 * 3600 * 24 * 365;
date.setTime(time);
// UTC 1971年1月1日 0:00:00 0
// 由于当前时区为UTC+8,所有输出会增加8小时
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 1971年1月1日 8:00:00 0
date.setTime(-time);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 1969年1月1日 8:00:00 0
date.setTime(120000000000);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 1973年10月21日 5:20:00 0
0 条评论
撰写评论