JavaScript setUTCHours() 方法

Date 对象参考手册 JavaScript Date 对象

实例

根据世界时 (UTC) 设置小时字段为15:

var d = new Date();
d.setUTCHours(15);

d 按当地时间输出:

点我分享笔记