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