内容目录
setSeconds()
函数用于基于当地时间设置当前Date对象中的秒值。也就是"年月日 时分秒"中"秒"的数值。setSeconds()
函数还可同时设置毫秒值。
该函数属于Date对象,所有主流浏览器均支持该函数。
语法
date.setSeconds( seconds[, milliseconds ] )
参数
参数 | 描述 |
---|---|
seconds | Number类型指定的秒值。 |
milliseconds | 可选/Number类型指定的毫秒值。 |
setSeconds()
函数的所有参数都可以超出常规取值范围。例如:参数seconds
可以超出常规的0 ~ 59的取值范围;参数milliseconds
可以超出常规的0 ~ 999的取值范围;并且都可以为负数。Date
对象内部会自动计算并转换为相应的时间。
返回值
setSeconds()
函数没有返回值(或者说,返回值为undefined
)。
示例&说明
//定义一个Date对象"2013-05-15 00:00:00 132"
var date = new Date(2013, 4, 15, 0, 0, 0, 132);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2013年5月15日 0:00:00 132
date.setSeconds(36);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2013年5月15日 0:00:36 132
date.setSeconds(-6000);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2013年5月14日 22:20:00 132
date.setSeconds(120, -5);
document.writeln( date.toLocaleString() + " " + date.getMilliseconds() ); // 2013年5月14日 22:21:59 995
0 条评论
撰写评论